mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-12 23:54:17 +00:00
Fix import ordering
This commit is contained in:
parent
78b986d506
commit
102037788d
1 changed files with 4 additions and 2 deletions
|
|
@ -1,13 +1,15 @@
|
||||||
"""Tests for the Manager object for FileCheckers."""
|
"""Tests for the Manager object for FileCheckers."""
|
||||||
import errno
|
import errno
|
||||||
|
|
||||||
|
from flake8 import checker
|
||||||
|
|
||||||
import mock
|
import mock
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from flake8 import checker
|
|
||||||
|
|
||||||
|
|
||||||
def style_guide_mock(**kwargs):
|
def style_guide_mock(**kwargs):
|
||||||
|
"""Create a mock StyleGuide object."""
|
||||||
kwargs.setdefault('diff', False)
|
kwargs.setdefault('diff', False)
|
||||||
kwargs.setdefault('jobs', '4')
|
kwargs.setdefault('jobs', '4')
|
||||||
style_guide = mock.Mock()
|
style_guide = mock.Mock()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue