From af1e5dea3511c7e01f9a0a31f6e254d63848bed5 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 17 Feb 2020 14:58:37 -0500 Subject: 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 Reviewed-by: David Pursehouse --- subcmds/abandon.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'subcmds/abandon.py') 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 @@ # limitations under the License. from __future__ import print_function + +from collections import defaultdict import sys + from command import Command -from collections import defaultdict from git_command import git from progress import Progress -- cgit v1.2.3-54-g00ecf