You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Code generated by sqlc. DO NOT EDIT.# versions:# sqlc v1.27.0importdataclassesfromtypingimportAny, Optional@dataclasses.dataclass()classFile:
id: Anyname: Anypath: Anyhash: Anyresource_id: Any
I realise sqlite plays fast and loose with types, but so does python. It'd be very beneficial to have this working.
The text was updated successfully, but these errors were encountered:
When generating python code with the engine set to sqlite the generated code has every property annotated with the Any type.
If I switch the engine to postgresql everything works as expected.
I realise sqlite plays fast and loose with types, but so does python. It'd be very beneficial to have this working.
The text was updated successfully, but these errors were encountered: