Skip to content

Commit f28d7e9

Browse files
authored
fix(ia): add PyDataSet.getUnderlyingDataset function (#314)
1 parent 0efc8c7 commit f28d7e9

File tree

1 file changed

+9
-0
lines changed
  • src/com/inductiveautomation/ignition/common/script/builtin

1 file changed

+9
-0
lines changed

Diff for: src/com/inductiveautomation/ignition/common/script/builtin/__init__.py

+9
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,15 @@ def getRowCount(self):
398398
"""
399399
pass
400400

401+
def getUnderlyingDataset(self):
402+
# type: () -> Dataset
403+
"""Returns the underlying dataset.
404+
405+
Returns:
406+
The underlying dataset.
407+
"""
408+
return Dataset()
409+
401410
def getValueAt(self, row, col):
402411
# type: (int, Union[int, AnyStr]) -> Any
403412
"""Returns the value at the specified row index and column

0 commit comments

Comments
 (0)