Skip to content

Commit 7f1ce47

Browse files
authored
Ignore all type errors from mypy when debugpy is installed (#12893)
1 parent 7d9827e commit 7f1ce47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

localstack-core/localstack/packages/debugpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class DebugPyPackageInstaller(PackageInstaller):
2020

2121
def is_installed(self) -> bool:
2222
try:
23-
import debugpy # type: ignore[import-not-found] # noqa: T100
23+
import debugpy # type: ignore # noqa: T100
2424

2525
assert debugpy
2626
return True

0 commit comments

Comments
 (0)