In Python3 the statement that imports the print function from future will fail if not at the top of the file:
from future import print_function
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: from future imports must occur at the beginning of the file
This small PR addresses that bug by moving it to the top.
This small PR addresses that bug by moving it to the top.