VFSImporter: Add ignore directive for mypy

It's complaining about something in the Python source, nothing we can do
about that
This commit is contained in:
rdb 2025-07-28 22:50:14 +02:00
parent e4e5d75df7
commit fe65114cd7
1 changed files with 1 additions and 1 deletions

View File

@ -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