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:
@ -21,17 +21,22 @@
|
||||
# *****************************************************************************
|
||||
"""test data types."""
|
||||
|
||||
from __future__ import division, print_function
|
||||
|
||||
import sys
|
||||
from os import path
|
||||
sys.path.insert(0, path.abspath(path.join(path.dirname(__file__), '..')))
|
||||
|
||||
# no fixtures needed
|
||||
import pytest
|
||||
|
||||
from secop.datatypes import (ArrayOf, BLOBType, BoolType, DataType, EnumType,
|
||||
FloatRange, IntRange, ProgrammingError,
|
||||
StringType, StructOf, TupleOf, get_datatype)
|
||||
|
||||
sys.path.insert(0, path.abspath(path.join(path.dirname(__file__), '..')))
|
||||
|
||||
|
||||
|
||||
from secop.datatypes import DataType, FloatRange, IntRange, \
|
||||
EnumType, BLOBType, StringType, BoolType, ArrayOf, TupleOf, StructOf, \
|
||||
get_datatype, ProgrammingError
|
||||
|
||||
|
||||
def test_DataType():
|
||||
|
Reference in New Issue
Block a user