Skip to content

Commit f865f5d

Browse files
committed
MNT: Run isort
1 parent f96d243 commit f865f5d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

rocketpy/plots/compare/compare_flights.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import matplotlib.pyplot as plt
22
import numpy as np
33

4+
from ..plot_helpers import show_or_save_fig, show_or_save_plot
45
from .compare import Compare
56

6-
from ..plot_helpers import show_or_save_plot, show_or_save_fig
7-
87

98
class CompareFlights(Compare):
109
"""A class to compare the results of multiple flights.

rocketpy/plots/environment_analysis_plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
from rocketpy.units import convert_units
1010

11-
from .plot_helpers import show_or_save_plot
1211
from ..tools import find_two_closest_integers, import_optional_dependency
12+
from .plot_helpers import show_or_save_plot
1313

1414
# TODO: `wind_speed_limit` and `clear_range_limits` and should be numbers, not booleans
1515

rocketpy/plots/flight_plots.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import matplotlib.pyplot as plt
44
import numpy as np
5+
56
from .plot_helpers import show_or_save_plot
67

78

rocketpy/plots/plot_helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
from pathlib import Path
21
import warnings
2+
from pathlib import Path
33

4-
from matplotlib.figure import Figure
54
import matplotlib.pyplot as plt
5+
from matplotlib.figure import Figure
66

77
SAVEFIG_DPI = 300
88

0 commit comments

Comments
 (0)