Skip to content
Snippets Groups Projects
Commit 4fa04ad4 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

fuse: Fix typos spotted after codepsell upgrade

parent c62c623e
No related branches found
Tags swh-provenance-20250320.1
No related merge requests found
......@@ -222,7 +222,7 @@ class Fuse(pyfuse3.Operations):
async def opendir(self, inode: int, _ctx: pyfuse3.RequestContext) -> int:
"""Open a directory referred by a given inode"""
# Re-use inode as directory handle
# Reuse inode as directory handle
self.logger.debug("opendir(inode=%d)", inode)
return inode
......@@ -256,7 +256,7 @@ class Fuse(pyfuse3.Operations):
) -> pyfuse3.FileInfo:
"""Open an inode and return a unique file handle"""
# Re-use inode as file handle
# Reuse inode as file handle
self.logger.debug("open(inode=%d)", inode)
entry = self.inode2entry(inode)
return pyfuse3.FileInfo(fh=inode, **entry.file_info_attrs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment