Skip to content
Snippets Groups Projects
Commit da372dda authored by Stefano Borini's avatar Stefano Borini
Browse files

Using correct tuple notation

parent 9571ca79
No related branches found
No related tags found
1 merge request!86Improve event handling
from traits.api import HasStrictTraits, Tuple, Str
from traits.api import HasStrictTraits, Tuple
class BaseDriverEvent(HasStrictTraits):
......@@ -7,8 +7,8 @@ class BaseDriverEvent(HasStrictTraits):
class MCOStartEvent(BaseDriverEvent):
"""MCO should emit this event when the evaluation starts."""
input_names = Tuple(Str())
output_names = Tuple(Str())
input_names = Tuple()
output_names = Tuple()
class MCOFinishEvent(BaseDriverEvent):
......
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