Skip to content

Commit

Permalink
Merge pull request #47 from googlefonts/items
Browse files Browse the repository at this point in the history
AxisRegistry: add items method
  • Loading branch information
m4rc1e authored Jun 24, 2022
2 parents ad98e3c + 6c4ee0f commit e72da38
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 e72da38

Please sign in to comment.