Skip to content

Commit

Permalink
Fixed indenting on change introduced through the github ui
Browse files Browse the repository at this point in the history
  • Loading branch information
christophertubbs committed Feb 20, 2024
1 parent 1d45366 commit aff6902
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/lib/core/dmod/core/common/collections/bag.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ def remove(self, element: _T):
"""
try:
self.__data.remove(element)
except ValueError:
pass
self.__data.remove(element)
except ValueError:
pass

def pick(self) -> typing.Optional[_T]:
"""
Expand Down

0 comments on commit aff6902

Please sign in to comment.