Mit default zusammenführen

This commit is contained in:
2017-11-11 09:52:55 +01:00
9 changed files with 1204 additions and 5 deletions

View File

@@ -117,7 +117,8 @@ class RevPiModIO(object):
if len(self._lst_devselect) > 0:
lst_found = []
if type(self) == RevPiModIODriver:
if type(self) == RevPiModIODriver \
or type(self) == RevPiNetIODriver:
_searchtype = "VIRTUAL"
else:
_searchtype = None
@@ -928,3 +929,7 @@ class RevPiModIODriver(RevPiModIOSelected):
super().__init__(
virtdev, autorefresh, False, syncoutputs, procimg, configrsc, True
)
# Nachträglicher Import
from .netio import RevPiNetIODriver