Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
corrections from review
Browse files Browse the repository at this point in the history
  • Loading branch information
grm84 committed May 12, 2017
1 parent a05414c commit a1221a9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion tango/base_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,6 @@ def document_enum(enum_name, desc):
- PIPE_EVENT
*DATA_READY_EVENT - New in PyTango 7.0.0*
*INTERFACE_CHANGE_EVENT - New in PyTango 9.2.2*
*PIPE_EVENT - New in PyTango 9.2.2*
""" )
Expand Down
2 changes: 0 additions & 2 deletions tango/device_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1185,8 +1185,6 @@ def __DeviceProxy__get_events(self, event_id, callback=None, extract_as=ExtractA
return self.__get_attr_conf_events(event_id, extract_as)
elif event_type in (EventType.DATA_READY_EVENT,):
return self.__get_data_ready_events(event_id, extract_as)
elif event_type in (EventType.INTERFACE_CHANGE_EVENT,):
raise NotImplementedError("event_type not implemented event_type: " + str(event_type))
elif event_type in (EventType.PIPE_EVENT,):
return self.__get_pipe_events(event_id, extract_as)
else:
Expand Down
3 changes: 1 addition & 2 deletions tango/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1416,8 +1416,7 @@ def _get_value(self, evt):
elif isinstance(evt, DataReadyEventData):
return ""
elif isinstance(evt, PipeEventData):
print ("utils::_get_value()")
return
return evt.pipe_value


def get_home():
Expand Down

0 comments on commit a1221a9

Please sign in to comment.