We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd96a32 commit 29aaeeeCopy full SHA for 29aaeee
core/testcontainers/compose/__init__.py
@@ -1,8 +1,8 @@
1
-# flake8: noqa
+# flake8: noqa: F401
2
from testcontainers.compose.compose import (
3
+ ComposeContainer,
4
ContainerIsNotRunning,
5
+ DockerCompose,
6
NoSuchPortExposed,
7
PublishedPort,
- ComposeContainer,
- DockerCompose,
8
)
pyproject.toml
@@ -270,7 +270,9 @@ ignore = [
270
# line too long (already checked by black)
271
"E501",
272
# the must-have __init__.py (we are using package namespaces)
273
- "INP001"
+ "INP001",
274
+ # we do have some imports shadowing builtins
275
+ "A004"
276
]
277
278
[tool.ruff.lint.pyupgrade]
0 commit comments