Skip to content

Commit 37cf45b

Browse files
committed
Format files.
Signed-off-by: James Goppert <james.goppert@gmail.com>
1 parent ae3db56 commit 37cf45b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cyecca/graph.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
try:
1010
import pydot
11+
1112
PYDOT_AVAILABLE = True
1213
except ImportError:
1314
PYDOT_AVAILABLE = False
@@ -19,7 +20,7 @@ def draw_casadi(
1920
) -> pydot.Graph:
2021
"""
2122
Draw a CasADi expression graph.
22-
23+
2324
Requires pydot to be installed: pip install pydot
2425
or install cyecca with visualization extras: pip install cyecca[visualization]
2526
"""
@@ -29,7 +30,7 @@ def draw_casadi(
2930
"Install it with: pip install pydot "
3031
"or: pip install cyecca[visualization]"
3132
)
32-
33+
3334
curdir = Path(os.path.abspath(os.getcwd()))
3435
# dot draw creates a source.dot file, lets move to the tmp directory
3536
os.chdir(tempfile.gettempdir())

0 commit comments

Comments
 (0)