Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Santonia27 committed Nov 5, 2024
1 parent 86821f4 commit 81ecfcd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flood_adapt/object_model/tipping_point.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,11 +286,11 @@ def _make_html(self): # Make html
x=[
metric_data["sea level"].min(),
metric_data["sea level"].max(),
], # x range for the line
y=[metric[1], metric[1]], # y values for a horizontal line
],
y=[metric[1], metric[1]],
mode="lines",
name=f"{metric[0]} Threshold",
line={"color": "Red", "width": 3, "dash": "dash"}, # Line style
line={"color": "Red", "width": 3, "dash": "dash"},
)
)

Expand All @@ -304,7 +304,7 @@ def _make_html(self): # Make html
marker={
"color": "Red",
"size": 10,
}, # Use a dictionary literal instead
},
)
)

Expand Down

0 comments on commit 81ecfcd

Please sign in to comment.