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:
parent
e4e5d75df7
commit
fe65114cd7
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue