Skip to content

Commit

Permalink
chore: Add more options to observation
Browse files Browse the repository at this point in the history
  • Loading branch information
strakam committed Dec 26, 2024
1 parent 0d8990b commit 399c13c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions generals/core/observation.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,9 @@ def __getitem__(self, attribute_name: str):

def keys(self):
return dataclasses.asdict(self).keys()

def values(self):
return dataclasses.asdict(self).values()

def items(self):
return dataclasses.asdict(self).items()

0 comments on commit 399c13c

Please sign in to comment.