Closed calvingiles closed 8 years ago
flake8: access.py:5:1: I101 Imported names are in the wrong order. Should be connection, IntegrityError, transaction
access.py:5:1: I101 Imported names are in the wrong order. Should be connection, IntegrityError, transaction
line 5 of access.py: from django.db import connection, IntegrityError, transaction
from django.db import connection, IntegrityError, transaction
Resolved with:
from django.db import IntegrityError from django.db import connection, transaction
Can't reproduce. What version are you using?
I think this is related to #47.
I can reproduce, will fix.
flake8:
access.py:5:1: I101 Imported names are in the wrong order. Should be connection, IntegrityError, transaction
line 5 of access.py:
from django.db import connection, IntegrityError, transaction
Resolved with: