Skip to content

Commit

Permalink
Auto-format code using pep8 (#295)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub Actions <[email protected]>
  • Loading branch information
github-actions[bot] and actions-user authored Dec 19, 2024
1 parent ee8950a commit e4d0f18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/acom_music_box/plot_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def _plot_with_gnuplot(self):
"""
# Prepare columns and data for plotting
if not self.species_list:
return;
return
for species_group in self.species_list:
columns = ['time'] + species_group
data_to_plot = self.df[columns]
Expand Down Expand Up @@ -133,7 +133,7 @@ def _plot_with_matplotlib(self):
Plot the specified species using matplotlib.
"""
if not self.species_list:
return;
return
for species_group in self.species_list:
indexed = self.df.set_index('time')
fig, ax = plt.subplots()
Expand Down

0 comments on commit e4d0f18

Please sign in to comment.