fix isort

Change-Id: I5486e1f9b3143c6bb0804c49c7ca21adb9b84de1
Reviewed-on: https://forge.frm2.tum.de/review/19524
Reviewed-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de>
Tested-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de>
This commit is contained in:
Enrico Faulhaber
2018-12-03 18:01:29 +01:00
parent 29a5b5c49e
commit 8efd1df92c
45 changed files with 241 additions and 158 deletions

View File

@@ -36,20 +36,19 @@ Interface to the modules:
- remove_module(modulename_or_obj): removes the module (during shutdown)
"""
from __future__ import print_function
from __future__ import division, print_function
from time import time as currenttime
import threading
from time import time as currenttime
from secop.protocol.messages import EVENTREPLY, IDENTREQUEST, IDENTREPLY, \
ENABLEEVENTSREPLY, DESCRIPTIONREPLY, WRITEREPLY, COMMANDREPLY, \
DISABLEEVENTSREPLY, HEARTBEATREPLY
from secop.errors import NoSuchModuleError, NoSuchCommandError, \
NoSuchParameterError, BadValueError, ReadOnlyError, \
ProtocolError, SECoPServerError as InternalError
from secop.errors import SECoPServerError as InternalError
from secop.errors import (BadValueError, NoSuchCommandError, NoSuchModuleError,
NoSuchParameterError, ProtocolError, ReadOnlyError)
from secop.params import Parameter
from secop.protocol.messages import (COMMANDREPLY, DESCRIPTIONREPLY,
DISABLEEVENTSREPLY, ENABLEEVENTSREPLY,
EVENTREPLY, HEARTBEATREPLY, IDENTREPLY,
IDENTREQUEST, WRITEREPLY)
try:
unicode('a')