Brendon
Brendon
FYI seems to work in pyright https://github.com/microsoft/pyright/issues/4016 ```python from typing import TypedDict Geometry = TypedDict( "Geometry", { "position": TypedDict("Position", {"x": int, "y": int, "z": int}), "dimensions": TypedDict("Dimensions", {"width": int, "height":...
Can confirm the same happening on python 3.9, OSX Big Sur, should this os info be automatically handled by [screeninfo](https://github.com/rr-/screeninfo)? If not, a simple wrapper with @martisak fix should do...
Nice! If it's useful then, here are some aditional info about those types: With those, you can type transform as-is just by changing ```ts transform(xml: string, template: object): Promise; ```...
Also having it with Sonoma 14.2.1 (on M1) Running: ```sh brew install graphviz pip install --use-pep517 --config-settings="--global-option=build_ext" --config-settings="--build-option=-I$(brew --prefix graphviz)/include/" --config-settings="--build-option=-L$(brew --prefix graphviz)/lib/" pygraphviz ``` Get the error ```sh pygraphviz/graphviz_wrap.c:3020:10:...
Stumbled on this, feel like I have something to add, sorry if I missunderstood the use case. From the **feature** part of the description I got the feeling that the...
@jonathanslenders was just a suspicion I had from the code alone, the `from, to` function pairs makes it look like you have a common transaction type, if was the case,...