PEP8 fixes.

This commit is contained in:
Khushboo Vashi
2018-03-02 09:37:11 +00:00
committed by Dave Page
parent cca6504d54
commit a4124c2496
7 changed files with 21 additions and 25 deletions

View File

@@ -7,6 +7,8 @@
#
##########################################################################
import os
import sys
from collections import defaultdict
from operator import attrgetter
@@ -153,9 +155,6 @@ class PgAdminModule(Blueprint):
return res
import os
import sys
IS_PY2 = (sys.version_info[0] == 2)
IS_WIN = (os.name == 'nt')
@@ -316,4 +315,3 @@ SHORTCUT_FIELDS = [
'label': gettext('Alt/Option')
}
]