Skip to content
Snippets Groups Projects
Commit e1ee6d51 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

[Python] format

parent fb705aa1
No related branches found
No related tags found
No related merge requests found
...@@ -5,9 +5,6 @@ Author: Florent Lamiraux ...@@ -5,9 +5,6 @@ Author: Florent Lamiraux
from __future__ import print_function from __future__ import print_function
import sys
from . import entity # noqa from . import entity # noqa
from . import signal_base # noqa from . import signal_base # noqa
from .wrap import * # noqa from .wrap import * # noqa
...@@ -5,5 +5,5 @@ ...@@ -5,5 +5,5 @@
from __future__ import print_function from __future__ import print_function
# for backward compat # for backward compat
from .wrap import LoggerVerbosity as VerbosityLevel from .wrap import LoggerVerbosity as VerbosityLevel # noqa
from .wrap import Entity from .wrap import Entity # noqa
...@@ -4,12 +4,14 @@ ...@@ -4,12 +4,14 @@
from __future__ import print_function from __future__ import print_function
from .wrap import SignalBase, create_signal_wrapper as SignalWrapper
# I kept what follows for backward compatibility but I think it should be # I kept what follows for backward compatibility but I think it should be
# removed # removed
import re import re
from .wrap import SignalBase # noqa
from .wrap import create_signal_wrapper as SignalWrapper # noqa
def stringToTuple(vector): def stringToTuple(vector):
""" """
Transform a string of format '[n](x_1,x_2,...,x_n)' into a tuple of numbers. Transform a string of format '[n](x_1,x_2,...,x_n)' into a tuple of numbers.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment