Leonardo Ramírez
Leonardo Ramírez
I don't know if it's the same error, but today when I tried to open Git Graph the next message was raised: `Error loading webview: Error: Could not register service...
Try with: ```python from typing import Any, cast import api as untype_api # It is import to use a different name to untyped module api = cast(Any, untype_api) class MyAbstraction:...
Try with: ```python from typing import Type, TYPE_CHECKING, TypeVar T = TypeVar('T') def with_typehint(baseclass: Type[T]) -> Type[T]: """ Useful function to make mixins with baseclass typehint ``` class ReadonlyMixin(with_typehint(BaseAdmin))): ......