Alexander Zinov
Alexander Zinov
`EmailStr` is [actually](https://github.com/pydantic/pydantic/blob/932b025f892c5bbfa0a5da0d671179da7f93666e/pydantic/networks.py#L392) NOT a subclass of `str` thus [the check](https://github.com/tiangolo/sqlmodel/blob/6151f23e15703223128d641081b63d49a658d524/sqlmodel/main.py#L569) fails. SQLAlchemy type checks for such types as `EmailStr` should be added to `SQLModel` similar to [`IPV4Address`](https://github.com/tiangolo/sqlmodel/blob/6151f23e15703223128d641081b63d49a658d524/sqlmodel/main.py#L595). I can...
Nevermind, I found a draft PR #762, which should probably be linked here.
I'm experiencing a similar issue with `desktopCapturer.getSources()` and `FlutterWebRTC.Event` channel on Linux.
`intl_phone_number_input` itself doesn't support WASM (and also desktop platforms) because of a dependency on `libphonenumber_plugin` which can be easily replaced by a cross-platform `dlibphonenumber` package. I've opened [a PR](https://github.com/natintosh/intl_phone_number_input/pull/432) there...
Since [v0.8.0 ](https://github.com/natintosh/intl_phone_number_input/releases/tag/v0.8.0) `intl_phone_number_input` supports both WASM and desktop platforms. It would be great to see this in `flutter_login` as well.
The issue persists even if I downgrade Verilator to the recommended v4.214 and manually add the missing header.
@tefra It's Pyright, take a look [here](https://pyright-play.net/?code=MYGwhgzhAECCBcAoa1SRgWQKYBcxJRQAd1FE0poAhAClgEoDVxLs8njSg).
@tefra could you kindly clarify what do you mean by: > Meta class must be final Also, if `xsdata` _intends_ to ignore this warning, maybe it's better to simply generate...
Isn't it feasible to generate `class Meta` for every class? Even in cases where it's currently not needed.
Well, that's fair, but I believe this is about more than satisfying Pyright. When you do: ``` class A: class Meta: pass class B(A): pass ``` The `B` class inherits...