From 19c5267f868aa41e73752ac1c76ec7ae1efe07b8 Mon Sep 17 00:00:00 2001 From: Ben McGinnes Date: Sun, 17 Jun 2018 22:42:43 +1000 Subject: [PATCH] python bindings: core import statements * Fixed the bit I broke while fixing the PEP8 compliance issues. --- lang/python/src/core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/python/src/core.py b/lang/python/src/core.py index 33a1c708..8f2e9d8d 100644 --- a/lang/python/src/core.py +++ b/lang/python/src/core.py @@ -1,5 +1,8 @@ # -*- coding: utf-8 -*- +from __future__ import absolute_import, print_function, unicode_literals +del absolute_import, print_function, unicode_literals + import re import os import warnings @@ -11,9 +14,6 @@ from . import constants from . import errors from . import util -from __future__ import absolute_import, print_function, unicode_literals -del absolute_import, print_function, unicode_literals - # Copyright (C) 2016-2017 g10 Code GmbH # Copyright (C) 2004,2008 Igor Belyi # Copyright (C) 2002 John Goerzen