Skip to content

Commit 29aaeee

Browse files
committed
ruff fixes
1 parent bd96a32 commit 29aaeee

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# flake8: noqa
1+
# flake8: noqa: F401
22
from testcontainers.compose.compose import (
3+
ComposeContainer,
34
ContainerIsNotRunning,
5+
DockerCompose,
46
NoSuchPortExposed,
57
PublishedPort,
6-
ComposeContainer,
7-
DockerCompose,
88
)

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,9 @@ ignore = [
270270
# line too long (already checked by black)
271271
"E501",
272272
# the must-have __init__.py (we are using package namespaces)
273-
"INP001"
273+
"INP001",
274+
# we do have some imports shadowing builtins
275+
"A004"
274276
]
275277

276278
[tool.ruff.lint.pyupgrade]

0 commit comments

Comments
 (0)