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 6f3f0b5 commit d6c1df6Copy full SHA for d6c1df6
src/opengeodeweb_viewer/vtk_protocol.py
@@ -3,14 +3,14 @@
3
4
# Third party imports
5
import vtk
6
-from vtk.web import protocols as vtk_protocols
+from vtk.web import protocols as vtk_protocols # type: ignore
7
8
# Local application imports
9
10
11
-class VtkView(vtk_protocols.vtkWebProtocol):
12
- def __init__(self):
13
- super().__init__()
+class VtkView(vtk_protocols.vtkWebProtocol): # type: ignore
+ def __init__(self) -> None:
+ super().__init__() # type: ignore
14
self.DATA_FOLDER_PATH = os.getenv("DATA_FOLDER_PATH")
15
self.DataReader = vtk.vtkXMLPolyDataReader()
16
self.ImageReader = vtk.vtkXMLImageDataReader()
0 commit comments