Faraphel
Faraphel
When trying to use getattr with a default argument on any object inheriting from `Typed`, a `KeyError` will be raised instead of returning the default value. ``` _check_key, _map.py:267 __getitem__,...
See issue https://github.com/y-crdt/pycrdt/issues/314 reraise KeyError as an AttributeError when using getattr on Typed classes so that the function can recognize when to use the given default value.
I am trying to write an application using both Qt and pycrdt to allow for collaborative editing. Many of my widgets wrap a pycrdt object to store its values or...