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.
1 parent 7b97de8 commit 8da5648Copy full SHA for 8da5648
jupyter_server/services/contents/fileidmanager.py
@@ -44,9 +44,9 @@ class FileIdManager(LoggingConfigurable):
44
config=True,
45
)
46
47
- def __init__(self, *args, **kwargs):
+ def __init__(self, **kwargs):
48
# pass args and kwargs to parent Configurable
49
- super().__init__(*args, **kwargs)
+ super().__init__(**kwargs)
50
# initialize connection with db
51
self.con = sqlite3.connect(self.db_path)
52
self.log.debug("FileIdManager : Creating File ID tables and indices")
0 commit comments