Skip to content

Commit

Permalink
fix(ia): fix AlarmQueryResult method names (#307)
Browse files Browse the repository at this point in the history
there were typos in two methods:
- getAssociatedDate β†’ getAssociatedData
- getDataSet β†’ getDataset

fix: #306
  • Loading branch information
cesarcoatl authored Nov 6, 2024
1 parent d6f4e02 commit 4f8ce47
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ class AlarmQueryResult(object):
dataset.
"""

def getAssociatedDate(self, uuid):
def getAssociatedData(self, uuid):
# type: (AnyStr) -> Dataset
raise NotImplementedError

def getDataSet(self):
def getDataset(self):
# type: () -> Dataset
raise NotImplementedError

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

def getAssociatedDate(self, uuid):
def getAssociatedData(self, uuid):
# type: (AnyStr) -> Dataset
pass

def getDataSet(self):
def getDataset(self):
# type: () -> Dataset
pass

Expand Down

0 comments on commit 4f8ce47

Please sign in to comment.