Skip to content

Commit

Permalink
fixing bug in m_general_ph3.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kmilo9999 committed Mar 13, 2024
1 parent cfb8cda commit 261cbd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/icesat2waves/local_modules/m_general_ph3.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ def __init__(
if container:
self.fig = plt.figure(
edgecolor="None",
dpi=dpi * viewscale,
dpi=dpi * view_scale,
figsize=(xsize * fig_scale, ysize * fig_scale),
facecolor="w",
)
else:
self.fig, self.ax = plt.subplots(
num=None,
figsize=(xsize * fig_scale, ysize * fig_scale),
dpi=dpi * viewscale,
dpi=dpi * view_scale,
facecolor="w",
edgecolor="None",
)
Expand Down

0 comments on commit 261cbd2

Please sign in to comment.