Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed May 1, 2024
1 parent 94ad9c1 commit 299ea99
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -558,10 +558,10 @@ def __len__(self):
return len(self._items)

def __getitem__(self, __key):
raise NotImplementedError('use .items() instead')
raise NotImplementedError("use .items() instead")

def __iter__(self):
raise NotImplementedError('use .items() instead')
raise NotImplementedError("use .items() instead")

def items(self):
return self._items
Expand Down

0 comments on commit 299ea99

Please sign in to comment.