codestyle: apparently, ty learned to deal with this situation
All checks were successful
ci/woodpecker/push/workflow Pipeline was successful

or I changed something else in some other place
This commit is contained in:
bronsen 2026-02-20 21:28:11 +01:00
parent 19f01c56bb
commit fe73b03bf3

View file

@ -21,7 +21,7 @@ class TeilchenCreate(SQLModel):
class Teilchen(TeilchenCreate, table=True):
id: uuid.UUID = Field(default_factory=uuid.uuid7, primary_key=True) # ty:ignore[unresolved-attribute]
id: uuid.UUID = Field(default_factory=uuid.uuid7, primary_key=True)
async def make_teilchen_input(text: str) -> TeilchenCreate | None: