In the file dbzero/dbzero/initialization.py, line 7 contains a function declaration with an incorrect type hint. This causes an IDE warning: “Expected type 'dict', got 'str' instead.”
It looks bad.
I propose changing the line:
def init(dbzero_root: str, **kwargs) -> None:
to:
def init(dbzero_root: str, **kwargs: Any) -> None: