mirror of
https://github.com/thegeeklab/git-batch.git
synced 2024-11-01 01:00:42 +00:00
fix import order
This commit is contained in:
parent
09055c7f73
commit
c03e8b860f
@ -5,7 +5,6 @@ import argparse
|
||||
import logging
|
||||
import os
|
||||
import sys
|
||||
|
||||
from collections import defaultdict
|
||||
from urllib.parse import urlparse
|
||||
|
||||
@ -13,7 +12,8 @@ import git
|
||||
|
||||
from gitbatch import __version__
|
||||
from gitbatch.Logging import SingleLog
|
||||
from gitbatch.Utils import normalize_path, to_bool
|
||||
from gitbatch.Utils import normalize_path
|
||||
from gitbatch.Utils import to_bool
|
||||
|
||||
|
||||
class GitBatch:
|
||||
|
@ -1,16 +1,17 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Global utility methods and classes."""
|
||||
|
||||
import os
|
||||
import logging
|
||||
import gitbatch.Utils
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
from gitbatch.Utils import Singleton, to_bool
|
||||
import colorama
|
||||
from pythonjsonlogger import jsonlogger
|
||||
|
||||
import gitbatch.Utils
|
||||
from gitbatch.Utils import Singleton
|
||||
from gitbatch.Utils import to_bool
|
||||
|
||||
CONSOLE_FORMAT = "{}[%(levelname)s]{} %(message)s"
|
||||
JSON_FORMAT = "(asctime) (levelname) (message)"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user