Skip to content

Commit f63e3d6

Browse files
2 parents d221d82 + aa05ff9 commit f63e3d6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

marking_and_admin/mark_functions.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
from datetime import datetime
1414
from io import StringIO
1515
from itertools import repeat
16+
<<<<<<< HEAD
1617
from typing import Any, Union
18+
=======
19+
from typing import Any, Union # , Optional, Set, Tuple, TypeVar
20+
>>>>>>> aa05ff90144b910a132564720daa853f06f95ff5
1721

1822
import git
1923
import pandas as pd
@@ -311,9 +315,15 @@ def try_to_kill(file_path: str):
311315
print(file_path, mystery_error)
312316

313317

318+
<<<<<<< HEAD
314319
def pull_all_repos(dir_list, hardcore_pull: bool = False):
315320
"""Pull latest version of all repos."""
316321

322+
=======
323+
def pull_all_repos(dir_list, CHATTY: bool = False, hardcore_pull: bool = False):
324+
"""Pull latest version of all repos."""
325+
# TODO: make sure chatty is actually a global
326+
>>>>>>> aa05ff90144b910a132564720daa853f06f95ff5
317327
of_total = len(dir_list)
318328
for i, student_repo in enumerate(dir_list):
319329
repo_is_here = os.path.join(ROOTDIR, student_repo)

0 commit comments

Comments
 (0)