fix(merge): fixed merge conflict after popping local changes back in from stash
This commit is contained in:
parent
1cb0e2d95b
commit
24da8948c5
3 changed files with 31 additions and 16 deletions
3
experiments/plots/__init__.py
Normal file
3
experiments/plots/__init__.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
from .plot import simple_plot
|
||||
|
||||
__all__ = ["simple_plot"]
|
||||
|
|
@ -6,6 +6,7 @@ def simple_plot(x: list, y: list, show_window: bool = False, filename: str = "pl
|
|||
plt.savefig(filename)
|
||||
|
||||
if show_window:
|
||||
# blocks until window is closed
|
||||
plt.show()
|
||||
|
||||
plt.close()
|
||||
|
|
|
|||
Reference in a new issue