Skip to content

Commit

Permalink
Fix import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bikegeek committed Oct 1, 2024
1 parent 995c999 commit 7949b2e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions metplotpy/plots/scatter/scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
from datetime import datetime
import plotly.graph_objects as go
import pandas as pd
from plots.base_plot import BasePlot
from xarray.util.generate_ops import render

from metplotpy.plots.base_plot import BasePlot
from metplotpy.plots import util


Expand Down Expand Up @@ -122,10 +123,8 @@ def _create_figure(self):
# Edit the final layout, set the plot title and axis labels
fig.update_layout(legend=self.get_legend(), title=self.get_title(), xaxis_title=self.get_xaxis_title(),
yaxis_title=self.get_yaxis_title())

end = datetime.now()
self.logger.info(f"Finished creating scatter plots in {end - start} seconds ")

return fig


Expand Down

0 comments on commit 7949b2e

Please sign in to comment.