We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ArbitraryFileIdManager.index()
The implementation of the index() method always creates a new file ID, even if one already exists:
index()
def index(self, path: str) -> str: # create new record with self.con: id = self._create(path) return id
It should check get_id() first and return it if it exists.
get_id()