Skip to content
Snippets Groups Projects
Commit b066445d authored by Swen Vermeul's avatar Swen Vermeul
Browse files

bugfix: .props should behave the same as .p

parent 85fa4c14
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,10 @@ class Experiment( ...@@ -35,6 +35,10 @@ class Experiment(
'save()' 'save()'
] + super().__dir__() ] + super().__dir__()
@property
def props(self):
return self.__dict__['p']
@property @property
def type(self): def type(self):
return self.__dict__['type'] return self.__dict__['type']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment