mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Removed 'f' before string
This commit is contained in:
parent
a7e654c365
commit
ddc4de2134
1 changed files with 1 additions and 1 deletions
|
|
@ -231,7 +231,7 @@ class TelegramObject(ContextInstanceMixin, metaclass=MetaTelegramObject):
|
|||
self.values[key] = value
|
||||
|
||||
# Log warning when Telegram silently adds new Fields
|
||||
log.warning(f"Field '%s' doesn't exist in %s", key, self.__class__)
|
||||
log.warning("Field '%s' doesn't exist in %s", key, self.__class__)
|
||||
|
||||
def __contains__(self, item: str) -> bool:
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue