diff options
Diffstat (limited to 'subcmds/grep.py')
-rw-r--r-- | subcmds/grep.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/subcmds/grep.py b/subcmds/grep.py index 9ebd776c..19c06d4d 100644 --- a/subcmds/grep.py +++ b/subcmds/grep.py | |||
@@ -14,12 +14,15 @@ | |||
14 | 14 | ||
15 | import functools | 15 | import functools |
16 | import sys | 16 | import sys |
17 | from typing import NamedTuple | ||
17 | 18 | ||
18 | from color import Coloring | 19 | from color import Coloring |
19 | from command import DEFAULT_LOCAL_JOBS, PagedCommand | 20 | from command import DEFAULT_LOCAL_JOBS |
20 | from error import GitError, InvalidArgumentsError, SilentRepoExitError | 21 | from command import PagedCommand |
22 | from error import GitError | ||
23 | from error import InvalidArgumentsError | ||
24 | from error import SilentRepoExitError | ||
21 | from git_command import GitCommand | 25 | from git_command import GitCommand |
22 | from typing import NamedTuple | ||
23 | from project import Project | 26 | from project import Project |
24 | 27 | ||
25 | 28 | ||