Skip to content

Commit b61b1d6

Browse files
committed
flake8 cleanup: move module import before statement.
1 parent e54bec3 commit b61b1d6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

roundup/version_check.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
# Roundup requires Python 2.7+ as mentioned in doc\installation.txt
44
from __future__ import print_function
5-
VERSION_NEEDED = (2,7)
6-
75
import sys
6+
7+
VERSION_NEEDED = (2, 7)
8+
89
if sys.version_info < VERSION_NEEDED:
910
print("Content-Type: text/plain\n")
1011
print("Roundup requires Python %s.%s or newer." % VERSION_NEEDED)

0 commit comments

Comments
 (0)