Skip to content

Commit e6e79b7

Browse files
authored
removed unnecessary f-string
1 parent 0ce109a commit e6e79b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

25-class-metaprog/sentinel/sentinel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __repr__(cls):
3232
try:
3333
return cls.repr
3434
except AttributeError:
35-
return f'{cls.__name__}'
35+
return cls.__name__
3636

3737

3838
class Sentinel(metaclass=_SentinelMeta):

0 commit comments

Comments
 (0)