Reports from __future__ import
statements that are used not at
the beginning of a file.
Example:
a = 1 from __future__ import print_function print()
When the quick-fix is applied, the code changes to:
from __future__ import print_function a = 1 print()