Soonho Kwon

Results 4 comments of Soonho Kwon

I came up with a dirty-patching solution: ``` from __future__ import annotations class DeviceClassification(Model): ... customer_login: fields.ReverseRelation['CustomerLogin'] ... from models.customers import CustomerLogin # import at end of file ``` Doesn't...

> @SnowSuno what python version are you using? I'm using `3.10` and getting `NameError: name is not defined` I'm using `3.9` and `3.10`. In `3.10`, it should work even without...

@yurahuchok I like the idea of your solution and ended up using a similar solution from yours. However I think the `type.parse` part is not needed since **`z.function().returns(type)` already validates...

I implemented a simple proposal for this feature in #3550. ```typescript z.number().defer() z.defer(z.number()) z.object({ ... }).deferProps() ``` Feel free to share thoughts on the interface or the implementation.