Skip to content

Commit 4f8ce47

Browse files
authored
fix(ia): fix AlarmQueryResult method names (#307)
there were typos in two methods: - getAssociatedDate → getAssociatedData - getDataSet → getDataset fix: #306
1 parent d6f4e02 commit 4f8ce47

File tree

1 file changed

+4
-4
lines changed
  • src/com/inductiveautomation/ignition/common/alarming/query

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ class AlarmQueryResult(object):
1919
dataset.
2020
"""
2121

22-
def getAssociatedDate(self, uuid):
22+
def getAssociatedData(self, uuid):
2323
# type: (AnyStr) -> Dataset
2424
raise NotImplementedError
2525

26-
def getDataSet(self):
26+
def getDataset(self):
2727
# type: () -> Dataset
2828
raise NotImplementedError
2929

@@ -47,11 +47,11 @@ def buildFrom(results):
4747
# type: (List[AlarmQueryResult]) -> AlarmQueryResult
4848
pass
4949

50-
def getAssociatedDate(self, uuid):
50+
def getAssociatedData(self, uuid):
5151
# type: (AnyStr) -> Dataset
5252
pass
5353

54-
def getDataSet(self):
54+
def getDataset(self):
5555
# type: () -> Dataset
5656
pass
5757

0 commit comments

Comments
 (0)