CoolCat467
CoolCat467
The wrapper script works for sure up to 1.19 on a Raspberry Pi 4, 4GB version
I agree the error message is misleading, but yes using an async list comprehension should be the fix here: ```python from typing import AsyncGenerator async def some_async_iterable() -> AsyncGenerator[int, None]:...
First batch, adding type annotations for nodes: https://github.com/c0fec0de/anytree/pull/253
> What is missing for this PR to be merged? I don't see any review comments talking about anything to change, so as far as I am aware nothing missing,...
Yes, yes it does
I forget, but probably Node class lives in a submodule and is re-exported in main namespace, and I must have forgotten `from import Node as Node` to tell typechecker it's...
Should be fixed with a182903
That is sort of out of the scope of what I intended to to with this pull request. I've noticed with my work in other projects that maintainers never really...
Ah, that's what you mean. Thanks for pointing that out, fixed with b313981
This is because `TypeVar` was added in Python 3.10