Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit e1ee6d5

Browse files
committed
[Python] format
1 parent fb705aa commit e1ee6d5

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/dynamic_graph/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55

66
from __future__ import print_function
77

8-
import sys
9-
108
from . import entity # noqa
119
from . import signal_base # noqa
12-
1310
from .wrap import * # noqa

src/dynamic_graph/entity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
from __future__ import print_function
66

77
# for backward compat
8-
from .wrap import LoggerVerbosity as VerbosityLevel
9-
from .wrap import Entity
8+
from .wrap import LoggerVerbosity as VerbosityLevel # noqa
9+
from .wrap import Entity # noqa

src/dynamic_graph/signal_base.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44

55
from __future__ import print_function
66

7-
from .wrap import SignalBase, create_signal_wrapper as SignalWrapper
8-
97
# I kept what follows for backward compatibility but I think it should be
108
# removed
119
import re
1210

11+
from .wrap import SignalBase # noqa
12+
from .wrap import create_signal_wrapper as SignalWrapper # noqa
13+
14+
1315
def stringToTuple(vector):
1416
"""
1517
Transform a string of format '[n](x_1,x_2,...,x_n)' into a tuple of numbers.

0 commit comments

Comments
 (0)