diff options
author | Ben McGinnes <[email protected]> | 2018-08-18 05:36:23 +0000 |
---|---|---|
committer | Ben McGinnes <[email protected]> | 2018-08-18 05:36:23 +0000 |
commit | 8a6a73b9c4f92b159450edb5e4a780fc7389ca82 (patch) | |
tree | ea28f65ae64a05eb7e993cca9ee8c5e1f8fa473f /lang/python/src/constants/event.py | |
parent | Python bindings src: PEP8 compliance (diff) | |
download | gpgme-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/event.py')
-rw-r--r-- | lang/python/src/constants/event.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/python/src/constants/event.py b/lang/python/src/constants/event.py index 1b14d1d1..9f9273da 100644 --- a/lang/python/src/constants/event.py +++ b/lang/python/src/constants/event.py @@ -16,8 +16,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA from __future__ import absolute_import, print_function, unicode_literals -del absolute_import, print_function, unicode_literals from gpg import util util.process_constants('GPGME_EVENT_', globals()) -del util +del absolute_import, print_function, unicode_literals, util |