Kevin Lloyd Bernal
Kevin Lloyd Bernal
@wRAR I can still reproduce Case 2. 👍
I think another way to solve this problem without modifying andi would be something like: ```python import attrs import andi class BaseDep: pass @attrs.define class Foo: dep: BaseDep @attrs.define class...
I found a way to prevent modifying andi but still create dynamic class signature using [dataclasses.make_dataclass](https://docs.python.org/3/library/dataclasses.html#dataclasses.make_dataclass). 🎉 ```python import andi import attrs from dataclasses import make_dataclass class BaseDep: pass @attrs.define...
Hi @phst ! Cheers for the report! I can't seem to reproduce your logs, as I get this on mac and linux with `bazel coverage --test_output=all //a:test --nocache_test_results`: ``` INFO:...
Thanks for checking it out @nedbat 🎉 > I'm not sure what you want added to the documentation. This behavior is due to an intricacy of PyTorch. Indeed. Though I...
Yeah, expanding it would be great. I think it would be clearer if we change _" ... code observed at ... "_ into _"... code executed ..."_. Would this technically...
+1 much better.