Skip to content

Commit

Permalink
AxisRegistry: add items method
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed Jun 24, 2022
1 parent ad98e3c commit 6c4ee0f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Lib/axisregistry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ def __iter__(self):
def keys(self):
return self._data.keys()

def items(self):
return self._data.items()

def get_fallback(self, name):
for a in self:
for fallback in self[a].fallback:
Expand Down

0 comments on commit 6c4ee0f

Please sign in to comment.