Skip to content

Commit

Permalink
pycodestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindougherty-noaa committed Jul 1, 2024
1 parent f14651c commit d82ff9a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions galleries/plot_types/basic/bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,6 @@ def _getBarData():

return x_pos, heights


if __name__ == '__main__':
main()
2 changes: 1 addition & 1 deletion galleries/plot_types/basic/horizontal_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def main():
# Create horizontal bar plot

# Grab sample bar plot data
y_pos, widths= _getBarData()
y_pos, widths = _getBarData()

# Create horizontal bar plot object
bar = HorizontalBar(y_pos, widths)
Expand Down
1 change: 1 addition & 0 deletions galleries/plot_types/basic/scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def main():

plt.show()


def _getScatterData():
# Generate test data for scatter plots

Expand Down
1 change: 1 addition & 0 deletions galleries/plot_types/gridded/contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from emcpy.plots.plots import ContourPlot
from emcpy.plots.create_plots import CreatePlot, CreateFigure


def main():
# Create contourf plot

Expand Down
1 change: 1 addition & 0 deletions galleries/plot_types/gridded/contourf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from emcpy.plots.plots import FilledContourPlot
from emcpy.plots.create_plots import CreatePlot, CreateFigure


def main():
# Create contourf plot

Expand Down

0 comments on commit d82ff9a

Please sign in to comment.