File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 99from opengeodeweb_viewer .vtk_protocol import VtkView # type: ignore
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" )
Original file line number Diff line number Diff line change 77
88# Local application imports
99
10+ # mypy: allow-untyped-defs
1011
11- class VtkView (vtk_protocols .vtkWebProtocol ): # type: ignore
12- def __init__ (self ) -> None :
13- super ().__init__ () # type: ignore
12+
13+ class VtkView (vtk_protocols .vtkWebProtocol ):
14+ def __init__ (self ):
15+ super ().__init__ ()
1416 self .DATA_FOLDER_PATH = os .getenv ("DATA_FOLDER_PATH" )
1517 self .DataReader = vtk .vtkXMLPolyDataReader ()
1618 self .ImageReader = vtk .vtkXMLImageDataReader ()
You can’t perform that action at this time.
0 commit comments