From: Frank Brehm Date: Thu, 20 Apr 2017 09:21:40 +0000 (+0200) Subject: Applying flake8 to quota-check X-Git-Tag: 0.1.2~197 X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=31656bf1762be1fffef6df23428679dcf69b3e21;p=pixelpark%2Fadmin-tools.git Applying flake8 to quota-check --- diff --git a/quota-check b/quota-check index c168f0a..702bc24 100755 --- a/quota-check +++ b/quota-check @@ -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.quota_check import PpQuotaCheckApp log = logging.getLogger(__name__) @@ -39,5 +37,3 @@ app() sys.exit(0) # vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 - -# vim: ts=4