##// END OF EJS Templates
fncachestore: add typing information...
Raphaël Gomès -
r53067:9fbdf355 default
parent child Browse files
Show More
@@ -1120,7 +1120,7 class fncache:
1120 class _fncachevfs(vfsmod.proxyvfs):
1120 class _fncachevfs(vfsmod.proxyvfs):
1121 def __init__(self, vfs, fnc, encode):
1121 def __init__(self, vfs, fnc, encode):
1122 vfsmod.proxyvfs.__init__(self, vfs)
1122 vfsmod.proxyvfs.__init__(self, vfs)
1123 self.fncache = fnc
1123 self.fncache: fncache = fnc
1124 self.encode = encode
1124 self.encode = encode
1125
1125
1126 def __call__(self, path, mode=b'r', *args, **kw):
1126 def __call__(self, path, mode=b'r', *args, **kw):
General Comments 0
You need to be logged in to leave comments. Login now