Skip to content

Commit

Permalink
fix syntax issue in append
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Aug 26, 2024
1 parent ff9a03d commit a2a01b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osmsg/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def create_charts(df, fname):
# ax.set_yscale("log")
ax.yaxis.set_major_formatter(ticker.StrMethodFormatter("{x:,.0f}"))
plt.savefig(f"{fname}_tags.png", bbox_inches="tight")
created_charts._append(f"{fname}_tags.png")
created_charts.append(f"{fname}_tags.png")

return created_charts

Expand Down

0 comments on commit a2a01b8

Please sign in to comment.