This commit is contained in:
Avram Lubkin 2023-05-26 11:14:00 -04:00 коммит произвёл Avram Lubkin
Родитель 8e683a40bc
Коммит 22164f97bf
5 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -12,7 +12,7 @@ from typing import Optional
from comma.database.driver import DatabaseDriver
from comma.database.model import Distros, MonitoringSubjects
from comma.downstream.monitor import monitor_downstream
from comma.upstream.parser import process_commits
from comma.upstream import process_commits
from comma.util import config
from comma.util.spreadsheet import export_commits, import_commits, update_commits
from comma.util.symbols import print_missing_symbols

Просмотреть файл

@ -17,7 +17,7 @@ from comma.database.model import (
PatchData,
)
from comma.downstream.matcher import patch_matches
from comma.upstream.parser import process_commits
from comma.upstream import process_commits
from comma.util import config
from comma.util.tracking import GitProgressPrinter, get_linux_repo, get_tracked_paths

Просмотреть файл

Просмотреть файл

@ -1,2 +0,0 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

Просмотреть файл

@ -86,7 +86,7 @@ def import_commits(in_file: str) -> None:
sys.exit(1)
# TODO: Fix tracking to support commits which are manually added
# to the database, and therefore affect untracked paths.
# from comma.upstream.parser import process_commits
# from comma.upstream import process_commits
# print(f"Importing commits from spreadsheet '{in_file}'...")
# workbook, worksheet = get_workbook(in_file)
# wb_commits = get_wb_commits(worksheet)