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

@ -21,22 +21,26 @@
# *****************************************************************************
"""Define Baseclasses for real Modules implemented in the server"""
from __future__ import print_function
from __future__ import division, print_function
import sys
import time
from secop.datatypes import (EnumType, FloatRange, StringType, TupleOf,
get_datatype)
from secop.errors import ConfigError
from secop.lib import (formatException, formatExtendedStack, mkthread,
unset_value)
from secop.lib.enum import Enum
from secop.metaclass import ModuleMeta, add_metaclass
from secop.params import Command, Override, Parameter
# XXX: connect with 'protocol'-Modules.
# Idea: every Module defined herein is also a 'protocol'-Module,
# all others MUST derive from those, the 'interface'-class is still derived
# from these base classes (how to do this?)
import sys
import time
from secop.lib import formatExtendedStack, mkthread, unset_value, formatException
from secop.lib.enum import Enum
from secop.errors import ConfigError
from secop.datatypes import EnumType, TupleOf, StringType, FloatRange, get_datatype
from secop.metaclass import add_metaclass, ModuleMeta
from secop.params import Command, Parameter, Override
@add_metaclass(ModuleMeta)