Skip to content

Commit 48014d1

Browse files
author
César Román
authored
fix(ia): change the return type of dataset columns (#50)
1 parent 66d0d2c commit 48014d1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/com/inductiveautomation/ignition/common/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ def getColumnIndex(self, name):
3636
raise NotImplementedError
3737

3838
def getColumnName(self, col):
39-
# type: (int) -> str
39+
# type: (int) -> String
4040
raise NotImplementedError
4141

4242
def getColumnNames(self):
43-
# type: () -> List[str]
43+
# type: () -> List[String]
4444
raise NotImplementedError
4545

4646
def getColumnType(self, col):
@@ -107,11 +107,11 @@ def getColumnIndex(self, name):
107107
pass
108108

109109
def getColumnName(self, col):
110-
# type: (int) -> str
110+
# type: (int) -> String
111111
pass
112112

113113
def getColumnNames(self):
114-
# type: () -> List[str]
114+
# type: () -> List[String]
115115
pass
116116

117117
def getColumnType(self, col):

src/com/inductiveautomation/ignition/common/script/builtin/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,11 @@ def getColumnIndex(self, name):
219219
pass
220220

221221
def getColumnName(self, col):
222-
# type: (int) -> str
222+
# type: (int) -> String
223223
pass
224224

225225
def getColumnNames(self):
226-
# type: () -> List[str]
226+
# type: () -> List[String]
227227
pass
228228

229229
def getColumnType(self, col):

0 commit comments

Comments
 (0)