Maxim

Results 5 comments of Maxim

And with RedisStore: redis.exceptions.DataError: Invalid input of type: 'Document'. Convert to a bytes, string, int or float first.

aiogram 3 also switched to Pydantic v2

Same problem with large-v3. No problems with large-v2.

I found example of using the transaction from @roman-right in Discord. ```python import motor.motor_asyncio from pydantic import BaseSettings from beanie import Document, init_beanie class Settings(BaseSettings): mongodb_dsn: str = "mongodb://localhost:27017" mongodb_db_name:...