jupyter-server/jupyter_server_fileid

create SQLite mixin

dlqqq opened this issue · 0 comments

dlqqq commented

Helps ensure self.con is of type SQLite connection whenever it is used, and allows us to remove redundant type assertions, e.g.

if not hasattr(self, "con") or self.con is None:
    return

See discussion in #49.