Amin Alaee

Results 235 comments of Amin Alaee

No worries, thank you for the effort 🚀

@ahndwon Thanks for the feedback, is this the full trace? As far as I can see this is happening on the `Rpc()..mergeFromProto3Json(res.body!.toJson());` part, right?

We're actually using Bootstrap and TablerUI so they are supported out of the box, we just need to use the correct css classes to support this.

Thanks for the PR, Can you please update the description? And also explain any specific reason you need this? The out-of-the-box conversion does not work in your case?

@kupavel87 I haven't really tried to use this before but I think `form_overrides` should do that: https://aminalaee.dev/sqladmin/configurations/#form-options

That's the wtforms behaviour. If you want SQLAdmin to handle that you can probably create an Enum or use sqladmin `SelectField` instead of that.

Hey, What is the issue exactly? Can you provide more info?

Adding a blog post (my own to the docs): https://aminalaee.dev/posts/2022/fastapi-aws-lambda/ Any feedback would be appreciated.

I know this is pretty old, but just for the sake of cleanup, you're not setting the right env variables: This works: ```python def test_feature_flag_is_read_from_env(monkeypatch): monkeypatch.setenv("FEATURE_A", "True") monkeypatch.setenv("flags", '{"feature_a": "True"}')...

I think you're missing a call to `Form.update_forward_refs()`. So this works ok: ```python from __future__ import annotations from pydantic import BaseModel, UUID4 class Form(BaseModel): uuid: UUID4 fields: list[Field] class Field(BaseModel):...