davnat

Results 7 comments of davnat

As mentioned in changelog and in #1025, starting from version 9.0.0 `valueUpdates` has been removed. This is my WIP solution using the new interface: ```ts setFormGroupValue( formGroup: FormGroup, formModel: DynamicFormControlModel[],...

I was having the very same issue reported by @theovin I double-checked my CmakeLists.txt and found that ``` include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) conan_basic_setup() ``` was executed before ``` conan_cmake_run(REQUIRES "Catch2/2.7.2@catchorg/stable" BASIC_SETUP BUILD missing)...

I think I'm also hit by this, on v1.12.2. I have some expanders with dynamic content inside, and they keep closing whenever something in the content changes: it's quite annoying....

Thanks for commenting on this. My use case is: - poll an API and check if something changed - if something changed, trigger a rerun The problem with the solution...

> The error is related Python < 3.10, because the signature of `BaseSettings.__init__` looks like this: > > def __init__( > __pydantic_self__, > _case_sensitive: bool | None = None, >...

I seems that adding `from __future__ import annotations` at the top of the file solves the issue.

I can confirm this on Ubuntu 20.04.6 LTS, python 3.8.10, mypy 1.3.0. In my case the problem appears only in a package that depends on ruamel-yaml very indirectly (it's a...