Skip to content

Commit

Permalink
Merge pull request #85 from zwicker-group/strings
Browse files Browse the repository at this point in the history
Fix formatting in __repr__ method for improved readability
  • Loading branch information
david-zwicker authored Jan 22, 2025
2 parents 87dcd1e + 7caf881 commit aa873a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modelrunner/storage/backend/text_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __init__(
self._data = {} if data is None else data

def __repr__(self):
return f'{self.__class__.__name__}("{self._path}", ' f'mode="{self.mode.name}")'
return f'{self.__class__.__name__}("{self._path}", mode="{self.mode.name}")'

def flush(self) -> None:
"""Write (cached) data to storage."""
Expand Down

0 comments on commit aa873a2

Please sign in to comment.