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/status.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'subcmds/status.py') diff --git a/subcmds/status.py b/subcmds/status.py index b594bd89..8537e6c5 100644 --- a/subcmds/status.py +++ b/subcmds/status.py @@ -16,6 +16,10 @@ from __future__ import print_function +import glob +import itertools +import os + from command import PagedCommand try: @@ -23,11 +27,6 @@ try: except ImportError: import dummy_threading as _threading -import glob - -import itertools -import os - from color import Coloring import platform_utils -- cgit v1.2.3-54-g00ecf