Skip to content

Commit

Permalink
Fix Travis 2.0
Browse files Browse the repository at this point in the history
Summary: Missed another place where we had a float num contours .

Reviewed By: ldworkin

Differential Revision: D17052058

fbshipit-source-id: b446ae8af5b5767621e0d25ef80390cc17dfa93a
  • Loading branch information
lena-kashtelyan authored and facebook-github-bot committed Aug 26, 2019
1 parent dd48772 commit bf84a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ax/plot/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def contour_config_to_trace(config):
"autocontour": True,
"contours": {"coloring": "heatmap"},
"hoverinfo": "x+y+z",
"ncontours": density / 2,
"ncontours": int(density / 2),
"type": "contour",
"x": grid_x,
"y": grid_y,
Expand Down

0 comments on commit bf84a8f

Please sign in to comment.