Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
dynamic-graph-python
Commits
e1ee6d51
Commit
e1ee6d51
authored
Nov 14, 2020
by
Guilhem Saurel
Browse files
[Python] format
parent
fb705aa1
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/dynamic_graph/__init__.py
View file @
e1ee6d51
...
...
@@ -5,9 +5,6 @@ Author: Florent Lamiraux
from
__future__
import
print_function
import
sys
from
.
import
entity
# noqa
from
.
import
signal_base
# noqa
from
.wrap
import
*
# noqa
src/dynamic_graph/entity.py
View file @
e1ee6d51
...
...
@@ -5,5 +5,5 @@
from
__future__
import
print_function
# for backward compat
from
.wrap
import
LoggerVerbosity
as
VerbosityLevel
from
.wrap
import
Entity
from
.wrap
import
LoggerVerbosity
as
VerbosityLevel
# noqa
from
.wrap
import
Entity
# noqa
src/dynamic_graph/signal_base.py
View file @
e1ee6d51
...
...
@@ -4,12 +4,14 @@
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
# removed
import
re
from
.wrap
import
SignalBase
# noqa
from
.wrap
import
create_signal_wrapper
as
SignalWrapper
# noqa
def
stringToTuple
(
vector
):
"""
Transform a string of format '[n](x_1,x_2,...,x_n)' into a tuple of numbers.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment