From fe65114cd729437ae4ee07f112940ee274b17d50 Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 28 Jul 2025 22:50:14 +0200 Subject: [PATCH] VFSImporter: Add ignore directive for mypy It's complaining about something in the Python source, nothing we can do about that --- direct/src/showbase/VFSImporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/showbase/VFSImporter.py b/direct/src/showbase/VFSImporter.py index 3845a0444c..76964dfc77 100644 --- a/direct/src/showbase/VFSImporter.py +++ b/direct/src/showbase/VFSImporter.py @@ -144,7 +144,7 @@ class VFSLoader(Loader): raise OSError -class VFSSourceLoader(VFSLoader, SourceLoader): +class VFSSourceLoader(VFSLoader, SourceLoader): # type: ignore[misc] def get_source(self, fullname): if fullname is not None and self.name != fullname: raise ImportError