Fix-up new I202 violations

This commit is contained in:
Ian Stapleton Cordasco 2017-11-25 18:35:18 -06:00
parent 9bea7576ac
commit a3a2539a23
No known key found for this signature in database
GPG key ID: C9D7A2604B4FCB2A
2 changed files with 1 additions and 2 deletions

View file

@ -19,7 +19,7 @@ except ImportError:
def emit(self, record):
"""Do nothing."""
pass
import sys
import sys # noqa: I202
LOG = logging.getLogger(__name__)
LOG.addHandler(NullHandler())

View file

@ -1,6 +1,5 @@
"""Module containing tests for the setuptools command integration."""
import pytest
from setuptools import dist
from flake8.main import setuptools_command