Skip to content

Commit 605a37d

Browse files
committed
Ignore type error because of missing stub until python/typeshed#2053 is merged.
1 parent 003545a commit 605a37d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/fscache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def md5(self, path: str) -> str:
152152
def samefile(self, f1: str, f2: str) -> bool:
153153
s1 = self.stat(f1)
154154
s2 = self.stat(f2)
155-
return os.path.samestat(s1, s2)
155+
return os.path.samestat(s1, s2) # type: ignore
156156

157157

158158
def copy_os_error(e: OSError) -> OSError:

0 commit comments

Comments
 (0)