-
-
Notifications
You must be signed in to change notification settings - Fork 827
Closed
Labels
Description
all these item keys are usually used like item[b'foo'] which is unpretty and also unsafe against typos.
an idea to solve that is to use some special object, not just a dict, and access such stuff as item.foo.
if we stay away from a dynamic implementation, we could just define properties for all needed and use tab completion in future.
item.get(key, default) could be reimplemented accordingly.
Reactions are currently unavailable