diff options
author | Mike Frysinger <vapier@google.com> | 2020-02-17 14:58:37 -0500 |
---|---|---|
committer | David Pursehouse <dpursehouse@collab.net> | 2020-02-18 06:28:12 +0000 |
commit | af1e5dea3511c7e01f9a0a31f6e254d63848bed5 (patch) | |
tree | ed30469d323af0213030345d1ce6a8f1220d29dc /subcmds/abandon.py | |
parent | 3cceda535ddbe1dae417a45db64895da45e97520 (diff) | |
download | git-repo-af1e5dea3511c7e01f9a0a31f6e254d63848bed5.tar.gz |
resort a few module imports to follow PEP8
All the stdlib imports are supposed to come before any local imports.
Change-Id: I10c0335ba2ff715fd34c9eb91bfe6560e904df08
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/255593
Tested-by: Mike Frysinger <vapier@google.com>
Reviewed-by: David Pursehouse <dpursehouse@collab.net>
Diffstat (limited to 'subcmds/abandon.py')
-rw-r--r-- | subcmds/abandon.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/subcmds/abandon.py b/subcmds/abandon.py index f3478129..5d56abf7 100644 --- a/subcmds/abandon.py +++ b/subcmds/abandon.py | |||
@@ -15,9 +15,11 @@ | |||
15 | # limitations under the License. | 15 | # limitations under the License. |
16 | 16 | ||
17 | from __future__ import print_function | 17 | from __future__ import print_function |
18 | |||
19 | from collections import defaultdict | ||
18 | import sys | 20 | import sys |
21 | |||
19 | from command import Command | 22 | from command import Command |
20 | from collections import defaultdict | ||
21 | from git_command import git | 23 | from git_command import git |
22 | from progress import Progress | 24 | from progress import Progress |
23 | 25 | ||