Shubham Dalvi
Shubham Dalvi
Currently, I can specify the value of `speed` parameter alongside `single_color` or `multi_color` How to add the `speed` parameter alongside Rainbow and make it moving?
```python class Event(models.Model): id = fields.BigIntField(pk=True) name = fields.CharField(max_length=100) participants: fields.ManyToManyRelation["Team"] = fields.ManyToManyField( "models.Team", related_name="events", through="event_team" ) class Team(models.Model): id = fields.BigIntField(pk=True) name = fields.CharField(max_length=100) events: fields.ManyToManyRelation[Event] ``` I have...
**Description** Passing multiple values to the `IN` operator does not work **Steps To Reproduce** ```python3 from tortoise import fields, models, Tortoise class User(models.Model): id = fields.IntField(pk=True) name = fields.CharField(max_length=30) #...