Skip to content

Commit

Permalink
Fix string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Jan 23, 2024
1 parent d42d2f2 commit 82115c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def __init__(
self._args_kwargs = ", ".join(self._args_kwargs)

def __repr__(self) -> str:
return f"{self.__class__.__name__}(repr(self._args_kwargs))"
return f"{self.__class__.__name__}(repr{self._args_kwargs})"

@staticmethod
def create(
Expand Down

0 comments on commit 82115c4

Please sign in to comment.