Skip to content

Commit 0030e48

Browse files
test
1 parent 473f26c commit 0030e48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/opengeodeweb_viewer/rpc/utils_protocols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from opengeodeweb_viewer.vtk_protocol import VtkView
1010

1111

12-
class VtkUtilsView(VtkView): # type: ignore
12+
class VtkUtilsView(VtkView):
1313
ogw_prefix = "opengeodeweb_viewer."
1414
ogw_schemas_dict = get_schemas_dict(
1515
os.path.join(os.path.dirname(__file__), "schemas")

src/opengeodeweb_viewer/vtk_protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
class VtkView(vtk_protocols.vtkWebProtocol): # type: ignore
12-
def __init__(self):
12+
def __init__(self) -> None:
1313
super().__init__()
1414
self.DATA_FOLDER_PATH = os.getenv("DATA_FOLDER_PATH")
1515
self.DataReader = vtk.vtkXMLPolyDataReader()

0 commit comments

Comments
 (0)