mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
fix checking containing value in generator
This commit is contained in:
parent
83c7a17eff
commit
1656e0c4d7
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ class TelegramEventObserver:
|
|||
if ignore_default and not full_config:
|
||||
return bound_filters
|
||||
|
||||
filter_types = (type(f) for f in filters)
|
||||
filter_types = tuple(type(f) for f in filters)
|
||||
|
||||
validation_errors = []
|
||||
for bound_filter in self._resolve_filters_chain():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue