Skip to content

Commit ca90ceb

Browse files
committed
[wip] flake8
1 parent c0467ca commit ca90ceb

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[flake8]
22
exclude = build,.git,.tox,./tests/.env
33
extend-ignore = E203
4-
max-line-length = 88
4+
max-line-length = 89
55
per-file-ignores =
66
thibaud/core/cache/backends/filebased.py:W601
77
thibaud/core/cache/backends/base.py:W601

tests/app_loading/tests.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
import os
2-
31
from thibaud.apps import apps
42
from thibaud.test import SimpleTestCase
5-
from thibaud.test.utils import extend_sys_path
63

74

85
class GetModelsTest(SimpleTestCase):

tests/template_tests/test_custom.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
from thibaud.template.base import Node
55
from thibaud.template.library import InvalidTemplateLibrary
66
from thibaud.test import SimpleTestCase
7-
from thibaud.test.utils import extend_sys_path
87

98
from .templatetags import custom, inclusion
109
from .utils import ROOT

tests/user_commands/tests.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@
77

88
from admin_scripts.tests import AdminScriptTestCase
99

10-
from thibaud.apps import apps
1110
from thibaud.core import management
1211
from thibaud.core.checks import Tags
13-
from thibaud.core.management import BaseCommand, CommandError, find_commands
12+
from thibaud.core.management import BaseCommand, CommandError
1413
from thibaud.core.management.base import OutputWrapper
1514
from thibaud.core.management.utils import (
1615
find_command,
@@ -22,7 +21,7 @@
2221
)
2322
from thibaud.db import connection
2423
from thibaud.test import SimpleTestCase, override_settings
25-
from thibaud.test.utils import captured_stderr, extend_sys_path
24+
from thibaud.test.utils import captured_stderr
2625
from thibaud.utils import translation
2726

2827
from .management.commands import dance

0 commit comments

Comments
 (0)