Skip to content

Commit 4c70564

Browse files
committed
Format
1 parent 29848fb commit 4c70564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PyMultiDictionary/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def __new__(cls, major, minor, patch) -> tuple:
2222

2323
def __repr__(self) -> str:
2424
fields = (f'{fld}={val}' for fld, val in zip(self.fields, self))
25-
return f'{str(self.__class__.__name__)}({", ".join(fields)})'
25+
return f'{self.__class__.__name__}({", ".join(fields)})'
2626

2727
def __str__(self) -> str:
2828
return '{}.{}.{}'.format(*self)

0 commit comments

Comments
 (0)