File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 66
77# Local application imports
88from 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 )
Original file line number Diff line number Diff line change 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 ()
You can’t perform that action at this time.
0 commit comments