Skip to content

Commit 6f3f0b5

Browse files
test
1 parent 0030e48 commit 6f3f0b5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/opengeodeweb_viewer/rpc/utils_protocols.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66

77
# Local application imports
88
from opengeodeweb_viewer.utils_functions import get_schemas_dict
9-
from opengeodeweb_viewer.vtk_protocol import VtkView
9+
from opengeodeweb_viewer.vtk_protocol import VtkView # type: ignore
1010

1111

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

18-
def __init__(self) -> None: # type: ignore
18+
def __init__(self) -> None:
1919
super().__init__()
2020

2121
@exportRpc(ogw_prefix + ogw_schemas_dict["kill"]["rpc"])
22-
def kill(self) -> None: # type: ignore
22+
def kill(self) -> None:
2323
print("Manual viewer kill, shutting down...", flush=True)
2424
os._exit(0)

src/opengeodeweb_viewer/vtk_protocol.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# Local application imports
99

1010

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

0 commit comments

Comments
 (0)