Skip to content

Commit 567311d

Browse files
committed
Moved imports up (PEP-8 compliance)
1 parent d079983 commit 567311d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

javaobj.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,6 @@
3333
limitations under the License.
3434
"""
3535

36-
# Module version
37-
__version_info__ = (0, 1, 1)
38-
__version__ = ".".join(str(x) for x in __version_info__)
39-
40-
# Documentation strings format
41-
__docformat__ = "restructuredtext en"
42-
43-
# ------------------------------------------------------------------------------
44-
4536
# Standard library
4637
import logging
4738
import os
@@ -57,6 +48,15 @@
5748

5849
# ------------------------------------------------------------------------------
5950

51+
# Module version
52+
__version_info__ = (0, 1, 1)
53+
__version__ = ".".join(str(x) for x in __version_info__)
54+
55+
# Documentation strings format
56+
__docformat__ = "restructuredtext en"
57+
58+
# ------------------------------------------------------------------------------
59+
6060
# Setup the logger
6161
_log = logging.getLogger(__name__)
6262

0 commit comments

Comments
 (0)