Skip to content

Commit 857013c

Browse files
committed
fix typo in exception msg
1 parent f13a408 commit 857013c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plotly/tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -958,10 +958,10 @@ def _add_domain_is_3d(layout, s_label, x_domain, y_domain):
958958

959959
# Throw exception if r | c is out of range
960960
if not (0 <= r < rows):
961-
raise Exception("Some 'cell' row value it out of range. "
961+
raise Exception("Some 'cell' row value is out of range. "
962962
"Note: the starting cell is (1, 1)")
963963
if not (0 <= c < cols):
964-
raise Exception("Some 'cell' col value it out of range. "
964+
raise Exception("Some 'cell' col value is out of range. "
965965
"Note: the starting cell is (1, 1)")
966966

967967
# Get inset x domain using grid

0 commit comments

Comments
 (0)