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 b88c111 commit 473f26cCopy full SHA for 473f26c
src/opengeodeweb_viewer/rpc/utils_protocols.py
@@ -15,10 +15,10 @@ class VtkUtilsView(VtkView): # type: ignore
15
os.path.join(os.path.dirname(__file__), "schemas")
16
)
17
18
- def __init__(self) -> None:
+ def __init__(self) -> None: # type: ignore
19
super().__init__()
20
21
@exportRpc(ogw_prefix + ogw_schemas_dict["kill"]["rpc"])
22
- def kill(self) -> None:
+ def kill(self) -> None: # type: ignore
23
print("Manual viewer kill, shutting down...", flush=True)
24
os._exit(0)
0 commit comments