removed unnecessary f-string

This commit is contained in:
Luciano Ramalho
2021-05-24 13:35:53 -03:00
committed by GitHub
parent 0ce109a9fe
commit e6e79b75d7

View File

@@ -32,7 +32,7 @@ class _SentinelMeta(type):
try:
return cls.repr
except AttributeError:
return f'{cls.__name__}'
return cls.__name__
class Sentinel(metaclass=_SentinelMeta):