Skip to content

Commit

Permalink
Merge pull request #448 from lnls-sirius/PR-fix-bugs
Browse files Browse the repository at this point in the history
Bug fix in device.py for dipoles
  • Loading branch information
xresende authored Apr 15, 2020
2 parents aff2414 + 0a44c54 commit 7df01d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion siriuspy/siriuspy/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.0.1
3 changes: 2 additions & 1 deletion siriuspy/siriuspy/devices/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ def __init__(self, devname, devices):

self._properties = []
for dev in self._devices:
self._properties += dev.properties
if dev is not None:
self._properties += dev.properties

@property
def devname(self):
Expand Down

0 comments on commit 7df01d1

Please sign in to comment.