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 473f26c commit 0030e48Copy full SHA for 0030e48
src/opengeodeweb_viewer/rpc/utils_protocols.py
@@ -9,7 +9,7 @@
9
from opengeodeweb_viewer.vtk_protocol import VtkView
10
11
12
-class VtkUtilsView(VtkView): # type: ignore
+class VtkUtilsView(VtkView):
13
ogw_prefix = "opengeodeweb_viewer."
14
ogw_schemas_dict = get_schemas_dict(
15
os.path.join(os.path.dirname(__file__), "schemas")
src/opengeodeweb_viewer/vtk_protocol.py
class VtkView(vtk_protocols.vtkWebProtocol): # type: ignore
- def __init__(self):
+ def __init__(self) -> None:
super().__init__()
self.DATA_FOLDER_PATH = os.getenv("DATA_FOLDER_PATH")
self.DataReader = vtk.vtkXMLPolyDataReader()
0 commit comments