Skip to content

Commit 6c1d1c0

Browse files
committed
run ruff
1 parent 7794a20 commit 6c1d1c0

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

django_typer/tests/test_backup_example.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ def tearDown(self) -> None:
2525
def test_base_backup(self):
2626
lines = (
2727
run_command(
28-
"backup", "--no-color", "--settings", "django_typer.tests.settings.backup", "list"
28+
"backup",
29+
"--no-color",
30+
"--settings",
31+
"django_typer.tests.settings.backup",
32+
"list",
2933
)[0]
3034
.strip()
3135
.splitlines()[1:]
@@ -90,7 +94,11 @@ def test_extend_backup(self):
9094
lines = [
9195
line.strip()
9296
for line in run_command(
93-
"backup", "--no-color", "--settings", "django_typer.tests.settings.backup_ext", "list"
97+
"backup",
98+
"--no-color",
99+
"--settings",
100+
"django_typer.tests.settings.backup_ext",
101+
"list",
94102
)[0]
95103
.strip()
96104
.splitlines()[1:]

0 commit comments

Comments
 (0)