Skip to content
Snippets Groups Projects
Commit 790a98fc authored by Martin Bauer's avatar Martin Bauer
Browse files

Missing import

- how could this not have been caught by the tests?!
parent e87d0f68
Branches
Tags
No related merge requests found
Pipeline #17303 passed with stages
in 4 minutes and 8 seconds
...@@ -3,6 +3,7 @@ This module extends the pyplot module with functions to show scalar and vector f ...@@ -3,6 +3,7 @@ This module extends the pyplot module with functions to show scalar and vector f
simulation coordinate system (y-axis goes up), instead of the "image coordinate system" (y axis goes down) that simulation coordinate system (y-axis goes up), instead of the "image coordinate system" (y axis goes down) that
matplotlib normally uses. matplotlib normally uses.
""" """
import warnings
from itertools import cycle from itertools import cycle
from matplotlib.pyplot import * from matplotlib.pyplot import *
......
...@@ -5,8 +5,7 @@ import sympy as sp ...@@ -5,8 +5,7 @@ import sympy as sp
from pystencils.assignment import Assignment from pystencils.assignment import Assignment
from pystencils.simp.simplifications import ( from pystencils.simp.simplifications import (
sort_assignments_topologically, sort_assignments_topologically, transform_lhs_and_rhs, transform_rhs)
transform_lhs_and_rhs, transform_rhs)
from pystencils.sympyextensions import count_operations, fast_subs from pystencils.sympyextensions import count_operations, fast_subs
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment