Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
tukiains committed Nov 28, 2024
1 parent 49912c4 commit 2bcb66d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cloudnetpy/plotting/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class PlotParameters:
raise_on_empty: Whether to raise an error if no data is found for a
plotted variable.
minor_ticks: Whether to display minor ticks on the x-axis.
"""

dpi: float = 120
Expand Down Expand Up @@ -214,7 +215,7 @@ def set_xax(self) -> None:
self.ax.set_xticklabels(x_tick_labels, fontsize=12)
if self.options.minor_ticks:
self.ax.xaxis.set_minor_locator(AutoMinorLocator(4))
self.ax.tick_params(which='minor', length=2.5)
self.ax.tick_params(which="minor", length=2.5)
self.ax.set_xlim(0, 24)

def set_yax(
Expand Down

0 comments on commit 2bcb66d

Please sign in to comment.