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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):