isort result

Change-Id: I137d9a6b4e2322f8df0506f9e8f751a4743aafd0
Reviewed-on: https://forge.frm2.tum.de/review/20218
Tested-by: JenkinsCodeReview <bjoern_pedersen@frm2.tum.de>
Reviewed-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de>
This commit is contained in:
Enrico Faulhaber
2019-03-25 10:29:59 +01:00
parent de188983ba
commit a255cfaa55
18 changed files with 67 additions and 64 deletions

View File

@ -42,13 +42,12 @@ import threading
from time import time as currenttime
from secop.errors import SECoPServerError as InternalError
from secop.errors import (BadValueError, NoSuchCommandError, NoSuchModuleError,
NoSuchParameterError, ProtocolError, ReadOnlyError)
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)
from secop.protocol.messages import COMMANDREPLY, DESCRIPTIONREPLY, \
DISABLEEVENTSREPLY, ENABLEEVENTSREPLY, EVENTREPLY, \
HEARTBEATREPLY, IDENTREPLY, IDENTREQUEST, WRITEREPLY
try:
unicode('a')

View File

@ -26,8 +26,8 @@ import socket
import sys
from secop.errors import SECoPError
from secop.lib import (formatException, formatExtendedStack,
formatExtendedTraceback)
from secop.lib import formatException, \
formatExtendedStack, formatExtendedTraceback
from secop.protocol.interface import decode_msg, encode_msg_frame, get_msg
from secop.protocol.messages import HELPREPLY, HELPREQUEST, HelpMessage