Browse Source

VFSImporter: Add ignore directive for mypy

It's complaining about something in the Python source, nothing we can do
about that
rdb 4 months ago
parent
commit
fe65114cd7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/showbase/VFSImporter.py

+ 1 - 1
direct/src/showbase/VFSImporter.py

@@ -144,7 +144,7 @@ class VFSLoader(Loader):
             raise OSError
             raise OSError
 
 
 
 
-class VFSSourceLoader(VFSLoader, SourceLoader):
+class VFSSourceLoader(VFSLoader, SourceLoader): # type: ignore[misc]
     def get_source(self, fullname):
     def get_source(self, fullname):
         if fullname is not None and self.name != fullname:
         if fullname is not None and self.name != fullname:
             raise ImportError
             raise ImportError