aiida-tutorials
aiida-tutorials copied to clipboard
✨ NEW: Think of place to add subtleties/in-depth explanations
trafficstars
Think of a place to add subtleties, more extensive explanations on topics.
Example:
The inputs are stored in the self.inputs AttributesFrozendict. This means that they can be accessed using both:
- The dictionary syntax:
self.inputs['x']. - The attribute syntax:
self.inputs.x.
If we do decide to rely on the attribute syntax, we should really explain the concept of an AttributeDict somewhere. What do you think @ramirezfranciscof, @ltalirz?