diff options
Diffstat (limited to 'scripts/graph_shaper.py')
-rwxr-xr-x | scripts/graph_shaper.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/graph_shaper.py b/scripts/graph_shaper.py index b7886e28..67c13caa 100755 --- a/scripts/graph_shaper.py +++ b/scripts/graph_shaper.py @@ -5,7 +5,9 @@ # Copyright (C) 2020 Dmitry Butyugin <dmbutyugin@google.com> # # This file may be distributed under the terms of the GNU GPLv3 license. -import optparse, math +import math +import optparse + import matplotlib # A set of damping ratios to calculate shaper response for @@ -274,7 +276,9 @@ def setup_matplotlib(output_to_file): global matplotlib if output_to_file: matplotlib.use("Agg") - import matplotlib.pyplot, matplotlib.dates, matplotlib.font_manager + import matplotlib.dates + import matplotlib.font_manager + import matplotlib.pyplot import matplotlib.ticker |