Victor Pierozan

Results 8 comments of Victor Pierozan

> Sorry, I was unable to complete a PR since I migrated away from sortedcontainers in the meantime. What did you migrate to?

Weeeell, it was, but I had to stop developing it for personal reasons and in the meantime, I fried my MCU, so I can't keep testing it right now, but...

Hey, I`ve done some tinkering with the adc module, it´s very early tho. Suggestions and directions are welcome, there is a pull request #46

same issue here, maybe we could add a `sheetWrapper` prop and where you pass in the Gohrom component? ```tsx ```

Also, would it make sense to add this? as it seems like this lib assumes the old default of undefined=false ```ts enableDynamicSizing = true, // same default as lib ```...

I have tried implementing the Unset type without patching pydantic itself, here is the [repo](https://github.com/vipierozan99/pydantic_unset). if you look at the tests, there are some unintuitive interactions with `exclude_unset` By when...

I tested it with `pydantic==2.14.2` and `pyright==1.1.407` (with `enableExperimentalFeatures = true`), while the model definition works, when I try to access the field I get `str | Unknown`, probably an...

> Is `enableExperimentalFeatures` set? > > ``` > [tool.pyright] > enableExperimentalFeatures = true > ``` Yes, otherwise I get an error on here: ```py class Foo(BaseModel): name: str | MISSING...