Skip to content

Commit

Permalink
one bug of passing was fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
toshiakiasakura committed May 12, 2021
1 parent 2e820f5 commit 9e2aeb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contextplt/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = (0,1,5)
__version_info__ = (0,1,6)
__version__ = ".".join(map(str, __version_info__))
2 changes: 1 addition & 1 deletion contextplt/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def __exit__(self,exc_type, exc_value, exc_traceback):
for ax in self.fig.get_axes():
ax.label_outer()
plt.tight_layout() if self.tight else None
plt.savefig(self.save_path, self.savefig_kargs) if self.save_path else None
plt.savefig(self.save_path, **self.savefig_kargs) if self.save_path else None
plt.show() if self.show else None

def option(self):
Expand Down

0 comments on commit 9e2aeb5

Please sign in to comment.