late-future-import (F404)
Added in v0.0.34 · Related issues · View source
Derived from the Pyflakes linter.
What it does
Checks for __future__ imports that are not located at the beginning of a
file.
Why is this bad?
Imports from __future__ must be placed the beginning of the file, before any
other statements (apart from docstrings). The use of __future__ imports
elsewhere is invalid and will result in a SyntaxError.
Example
Use instead: