##// END OF EJS Templates
typing: use python3-style type annotation
Arseniy Alekseyev -
r50785:5f664401 default
parent child Browse files
Show More
@@ -129,8 +129,7 b' class pathauditor:'
129 129 if self._cached:
130 130 self.audited.add(path)
131 131
132 def _checkfs_exists(self, prefix, path):
133 # type: (bytes, bytes) -> bool
132 def _checkfs_exists(self, prefix: bytes, path: bytes) -> bool:
134 133 """raise exception if a file system backed check fails.
135 134
136 135 Return a bool that indicates that the directory (or file) exists."""
General Comments 0
You need to be logged in to leave comments. Login now