mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-10 23:04:18 +00:00
Fix-up new I202 violations
This commit is contained in:
parent
9bea7576ac
commit
a3a2539a23
2 changed files with 1 additions and 2 deletions
|
|
@ -19,7 +19,7 @@ except ImportError:
|
||||||
def emit(self, record):
|
def emit(self, record):
|
||||||
"""Do nothing."""
|
"""Do nothing."""
|
||||||
pass
|
pass
|
||||||
import sys
|
import sys # noqa: I202
|
||||||
|
|
||||||
LOG = logging.getLogger(__name__)
|
LOG = logging.getLogger(__name__)
|
||||||
LOG.addHandler(NullHandler())
|
LOG.addHandler(NullHandler())
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
"""Module containing tests for the setuptools command integration."""
|
"""Module containing tests for the setuptools command integration."""
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from setuptools import dist
|
from setuptools import dist
|
||||||
|
|
||||||
from flake8.main import setuptools_command
|
from flake8.main import setuptools_command
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue