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 31, 2017
1 parent 4149fe2 commit 5ecd9b7
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 @@ -499,7 +499,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 @@ -1247,8 +1247,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 @@ -1498,8 +1498,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 5ecd9b7

Please sign in to comment.