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

flake

parent d5faa80a
No related branches found
No related tags found
1 merge request!79Deliver notification info
...@@ -28,7 +28,4 @@ from .notification_listeners.base_notification_listener import BaseNotificationL ...@@ -28,7 +28,4 @@ from .notification_listeners.base_notification_listener import BaseNotificationL
from .notification_listeners.base_notification_listener_factory import BaseNotificationListenerFactory # noqa from .notification_listeners.base_notification_listener_factory import BaseNotificationListenerFactory # noqa
from .notification_listeners.base_notification_listener_model import BaseNotificationListenerModel # noqa from .notification_listeners.base_notification_listener_model import BaseNotificationListenerModel # noqa
from .local_traits import ( from .local_traits import (ZMQSocketURL, Identifier) # noqa
ZMQSocketURL,
Identifier
)
import logging import logging
from traits.api import List, Instance, String from traits.api import Instance, String
from force_bdss.api import ( from force_bdss.api import (
BaseNotificationListener, BaseNotificationListener,
......
...@@ -224,4 +224,3 @@ class WorkflowReader(HasStrictTraits): ...@@ -224,4 +224,3 @@ class WorkflowReader(HasStrictTraits):
listeners.append(nl_factory.create_model(model_data)) listeners.append(nl_factory.create_model(model_data))
return listeners return listeners
...@@ -26,6 +26,7 @@ class ZMQSocketURL(BaseStr): ...@@ -26,6 +26,7 @@ class ZMQSocketURL(BaseStr):
return value return value
#: Identifies a CUBA type with its key. At the moment a String with #: Identifies a CUBA type with its key. At the moment a String with
#: no validation, but will come later. #: no validation, but will come later.
CUBAType = String() CUBAType = String()
...@@ -45,4 +45,3 @@ class TestLocalTraits(unittest.TestCase): ...@@ -45,4 +45,3 @@ class TestLocalTraits(unittest.TestCase):
"tcp://1.1.1.1:100000"]: "tcp://1.1.1.1:100000"]:
with self.assertRaises(TraitError): with self.assertRaises(TraitError):
c.socket_url = broken c.socket_url = broken
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