Skip to content

Commit d6c1df6

Browse files
test
1 parent 6f3f0b5 commit d6c1df6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/opengeodeweb_viewer/vtk_protocol.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
# Third party imports
55
import vtk
6-
from vtk.web import protocols as vtk_protocols
6+
from vtk.web import protocols as vtk_protocols # type: ignore
77

88
# Local application imports
99

1010

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

0 commit comments

Comments
 (0)