Skip to content

Commit

Permalink
Fix arrow size as int.
Browse files Browse the repository at this point in the history
  • Loading branch information
emunozdc committed Jun 14, 2024
1 parent 1763101 commit 8b7ac60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyranges_plot/plot_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def getvalue(key):
"plotly_port": getvalue("plotly_port"),
"arrow_line_width": float(getvalue("arrow_line_width")),
"arrow_color": getvalue("arrow_color"),
"arrow_size": float(getvalue("arrow_size")),
"arrow_size": getvalue("arrow_size"),
"shrink_threshold": getvalue("shrink_threshold"),
"shrinked_bkg": getvalue("shrinked_bkg"),
"shrinked_alpha": float(getvalue("shrinked_alpha")),
Expand Down

0 comments on commit 8b7ac60

Please sign in to comment.