removed unnecessary f-string
This commit is contained in:
@@ -32,7 +32,7 @@ class _SentinelMeta(type):
|
|||||||
try:
|
try:
|
||||||
return cls.repr
|
return cls.repr
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
return f'{cls.__name__}'
|
return cls.__name__
|
||||||
|
|
||||||
|
|
||||||
class Sentinel(metaclass=_SentinelMeta):
|
class Sentinel(metaclass=_SentinelMeta):
|
||||||
|
|||||||
Reference in New Issue
Block a user