Skip to content

Commit

Permalink
Added examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattilyra committed Nov 7, 2015
1 parent 0efe7cc commit cc155ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/naklar_examples.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@
"##### Technical note\n",
"The decorators are implemented as `sqlalchemy` hybrid properties but only ever use the two first paramters of the hybrid property - get and set for the python object. The latter two parameters are the `SQL` side get and set method, but _they are currently not supported_.\n",
"\n",
"This means that if the field `output` has a decorator, calling `experiment.select('output')` will fail as this will attempt to access `output` on the class not on an object, i.e. `experiment.E.output`.\n",
"This means that if the field `output` has a decorator, calling `experiment.select('output')` will fail as this will attempt to access `output` on the class not on an object, i.e. `experiment.E.output`. Calling `experiment.select()[0].output` is still perfectly fine as the elements in the list are instantiated objects.\n",
"\n",
"-----"
]
Expand Down

0 comments on commit cc155ef

Please sign in to comment.