File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class ModInfo:
5252def init_debugpy () -> None :
5353 """Tries to import and setup debugpy. Does nothing if unable to."""
5454 try :
55- import debugpy # pyright: ignore[reportMissingImports] # noqa: T100
55+ import debugpy # pyright: ignore[reportMissingImports] # noqa: PLC0415, T100
5656
5757 debugpy .listen ( # pyright: ignore[reportUnknownMemberType] # noqa: T100
5858 ("localhost" , 5678 ),
@@ -70,13 +70,13 @@ def init_debugpy() -> None:
7070 )
7171
7272 # Make WrappedArrays resolve the same as lists
73- from _pydevd_bundle .pydevd_resolver import ( # pyright: ignore[reportMissingImports]
73+ from _pydevd_bundle .pydevd_resolver import ( # pyright: ignore[reportMissingImports] # noqa: PLC0415
7474 tupleResolver , # pyright: ignore[reportUnknownVariableType]
7575 )
76- from _pydevd_bundle .pydevd_xml import ( # pyright: ignore[reportMissingImports]
76+ from _pydevd_bundle .pydevd_xml import ( # pyright: ignore[reportMissingImports] # noqa: PLC0415
7777 _TYPE_RESOLVE_HANDLER , # pyright: ignore[reportUnknownVariableType]
7878 )
79- from unrealsdk .unreal import WrappedArray
79+ from unrealsdk .unreal import WrappedArray # noqa: PLC0415
8080
8181 if not _TYPE_RESOLVE_HANDLER ._initialized : # pyright: ignore[reportUnknownMemberType]
8282 _TYPE_RESOLVE_HANDLER ._initialize () # pyright: ignore[reportUnknownMemberType]
You can’t perform that action at this time.
0 commit comments