ionelmc / python-tblib

Serialization library for Exceptions and Tracebacks.
BSD 2-Clause "Simplified" License
164 stars 33 forks source link

Fix flake8 errors #44

Closed jdufresne closed 5 years ago

jdufresne commented 5 years ago

Errors appeared as:

tests/test_issue30.py:7:1: E402 module level import not at top of file
tests/test_issue30.py:9:1: E402 module level import not at top of file

Move the uncertain import into the test function so all top level imports can be at the top of the file.