Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic-graph-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
dynamic-graph-python
Commits
e1ee6d51
Commit
e1ee6d51
authored
4 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Patches
Plain Diff
[Python] format
parent
fb705aa1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/dynamic_graph/__init__.py
+0
-3
0 additions, 3 deletions
src/dynamic_graph/__init__.py
src/dynamic_graph/entity.py
+2
-2
2 additions, 2 deletions
src/dynamic_graph/entity.py
src/dynamic_graph/signal_base.py
+4
-2
4 additions, 2 deletions
src/dynamic_graph/signal_base.py
with
6 additions
and
7 deletions
src/dynamic_graph/__init__.py
+
0
−
3
View file @
e1ee6d51
...
@@ -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
This diff is collapsed.
Click to expand it.
src/dynamic_graph/entity.py
+
2
−
2
View file @
e1ee6d51
...
@@ -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
This diff is collapsed.
Click to expand it.
src/dynamic_graph/signal_base.py
+
4
−
2
View file @
e1ee6d51
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment