summaryrefslogtreecommitdiffstats
path: root/subcmds/grep.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/grep.py')
-rw-r--r--subcmds/grep.py9
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
15import functools 15import functools
16import sys 16import sys
17from typing import NamedTuple
17 18
18from color import Coloring 19from color import Coloring
19from command import DEFAULT_LOCAL_JOBS, PagedCommand 20from command import DEFAULT_LOCAL_JOBS
20from error import GitError, InvalidArgumentsError, SilentRepoExitError 21from command import PagedCommand
22from error import GitError
23from error import InvalidArgumentsError
24from error import SilentRepoExitError
21from git_command import GitCommand 25from git_command import GitCommand
22from typing import NamedTuple
23from project import Project 26from project import Project
24 27
25 28