From: Frank Brehm Date: Thu, 20 Apr 2017 09:20:26 +0000 (+0200) Subject: Applying flake8 to format-du X-Git-Tag: 0.1.2~199 X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=11da815a8a629f224dd4718c72cc8d4a331e7059;p=pixelpark%2Fadmin-tools.git Applying flake8 to format-du --- diff --git a/format-du b/format-du index 084c809..ae0becf 100755 --- a/format-du +++ b/format-du @@ -15,8 +15,6 @@ if sys.argv[0] != '' and sys.argv[0] != '-c': if os.path.exists(os.path.join(cur_dir, 'pp_lib')): sys.path.insert(0, os.path.abspath(cur_dir)) -from pp_lib.common import pp - from pp_lib.format_du import FormatDuApp log = logging.getLogger(__name__) @@ -29,7 +27,6 @@ appname = os.path.basename(sys.argv[0]) locale.setlocale(locale.LC_ALL, '') app = FormatDuApp(appname=appname) -#app.initialized = True if app.verbose > 2: print("{c}-Object:\n{a}".format(c=app.__class__.__name__, a=app)) @@ -39,5 +36,3 @@ app() sys.exit(0) # vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 - -# vim: ts=4