aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/src/constants/sig/__init__.py
diff options
context:
space:
mode:
authorBen McGinnes <[email protected]>2018-08-18 07:36:23 +0200
committerBen McGinnes <[email protected]>2018-08-18 07:36:23 +0200
commit8a6a73b9c4f92b159450edb5e4a780fc7389ca82 (patch)
treeea28f65ae64a05eb7e993cca9ee8c5e1f8fa473f /lang/python/src/constants/sig/__init__.py
parentPython bindings src: PEP8 compliance (diff)
downloadgpgme-8a6a73b9c4f92b159450edb5e4a780fc7389ca82.tar.gz
gpgme-8a6a73b9c4f92b159450edb5e4a780fc7389ca82.zip
Python bindings constants: PEP8 compliance (almost)
* PEP8 compliance for all constants except the globals in src/constants/__init__.py depending on whether the import sequence affects the globals themselves.
Diffstat (limited to 'lang/python/src/constants/sig/__init__.py')
-rw-r--r--lang/python/src/constants/sig/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/python/src/constants/sig/__init__.py b/lang/python/src/constants/sig/__init__.py
index fc34f8e4..f45af004 100644
--- a/lang/python/src/constants/sig/__init__.py
+++ b/lang/python/src/constants/sig/__init__.py
@@ -1,5 +1,6 @@
from __future__ import absolute_import, print_function, unicode_literals
-del absolute_import, print_function, unicode_literals
from . import mode, notation
__all__ = ['mode', 'notation']
+
+del absolute_import, print_function, unicode_literals