WizzyGeek
Results
1
issues of
WizzyGeek
# What Happened ```python from __future__ import annotations from tortoise import fields ... class R2Container(Model): problem: fields.ForeignKeyRelation[R2Problem] = ... ports: fields.ReverseRelation[R2Ports] ... ``` ```python ... # In yet another file...