Skip to content

Commit 01da1c6

Browse files
committed
Fixed formatting for 'Integer' types.
1 parent efde201 commit 01da1c6

File tree

439 files changed

+1079
-541
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

439 files changed

+1079
-541
lines changed

_plotly_utils/basevalidators.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -859,20 +859,20 @@ def __init__(
859859

860860
def description(self):
861861
desc = """\
862-
The '{plotly_name}' property is a integer and may be specified as:""".format(
862+
The '{plotly_name}' property is a integer and may be specified as:\n""".format(
863863
plotly_name=self.plotly_name
864864
)
865865

866866
if not self.has_min_max:
867867
desc = (
868868
desc
869869
+ """
870-
- An int (or float that will be cast to an int)"""
870+
- An int (or float that will be cast to an int)"""
871871
)
872872
else:
873873
desc = desc + (
874874
"""
875-
- An int (or float that will be cast to an int)
875+
- An int (or float that will be cast to an int)
876876
in the interval [{min_val}, {max_val}]""".format(
877877
min_val=self.min_val, max_val=self.max_val
878878
)

plotly/graph_objects/_bar.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1689,7 +1689,8 @@ def zorder(self):
16891689
`zorder` appear in front of those with lower `zorder`.
16901690
16911691
The 'zorder' property is a integer and may be specified as:
1692-
- An int (or float that will be cast to an int)
1692+
1693+
- An int (or float that will be cast to an int)
16931694
16941695
Returns
16951696
-------

plotly/graph_objects/_box.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1952,7 +1952,8 @@ def zorder(self):
19521952
`zorder` appear in front of those with lower `zorder`.
19531953
19541954
The 'zorder' property is a integer and may be specified as:
1955-
- An int (or float that will be cast to an int)
1955+
1956+
- An int (or float that will be cast to an int)
19561957
19571958
Returns
19581959
-------

plotly/graph_objects/_candlestick.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,8 @@ def zorder(self):
10801080
`zorder` appear in front of those with lower `zorder`.
10811081
10821082
The 'zorder' property is a integer and may be specified as:
1083-
- An int (or float that will be cast to an int)
1083+
1084+
- An int (or float that will be cast to an int)
10841085
10851086
Returns
10861087
-------

plotly/graph_objects/_carpet.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,8 @@ def zorder(self):
803803
`zorder` appear in front of those with lower `zorder`.
804804
805805
The 'zorder' property is a integer and may be specified as:
806-
- An int (or float that will be cast to an int)
806+
807+
- An int (or float that will be cast to an int)
807808
808809
Returns
809810
-------

plotly/graph_objects/_contour.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,8 @@ def ncontours(self):
792792
`autocontour` is True or if `contours.size` is missing.
793793
794794
The 'ncontours' property is a integer and may be specified as:
795-
- An int (or float that will be cast to an int)
795+
796+
- An int (or float that will be cast to an int)
796797
in the interval [1, 9223372036854775807]
797798
798799
Returns
@@ -1661,7 +1662,8 @@ def zorder(self):
16611662
`zorder` appear in front of those with lower `zorder`.
16621663
16631664
The 'zorder' property is a integer and may be specified as:
1664-
- An int (or float that will be cast to an int)
1665+
1666+
- An int (or float that will be cast to an int)
16651667
16661668
Returns
16671669
-------

plotly/graph_objects/_contourcarpet.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,8 @@ def ncontours(self):
788788
`autocontour` is True or if `contours.size` is missing.
789789
790790
The 'ncontours' property is a integer and may be specified as:
791-
- An int (or float that will be cast to an int)
791+
792+
- An int (or float that will be cast to an int)
792793
in the interval [1, 9223372036854775807]
793794
794795
Returns
@@ -1181,7 +1182,8 @@ def zorder(self):
11811182
`zorder` appear in front of those with lower `zorder`.
11821183
11831184
The 'zorder' property is a integer and may be specified as:
1184-
- An int (or float that will be cast to an int)
1185+
1186+
- An int (or float that will be cast to an int)
11851187
11861188
Returns
11871189
-------

plotly/graph_objects/_funnel.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1527,7 +1527,8 @@ def zorder(self):
15271527
`zorder` appear in front of those with lower `zorder`.
15281528
15291529
The 'zorder' property is a integer and may be specified as:
1530-
- An int (or float that will be cast to an int)
1530+
1531+
- An int (or float that will be cast to an int)
15311532
15321533
Returns
15331534
-------

plotly/graph_objects/_heatmap.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1589,7 +1589,8 @@ def zorder(self):
15891589
`zorder` appear in front of those with lower `zorder`.
15901590
15911591
The 'zorder' property is a integer and may be specified as:
1592-
- An int (or float that will be cast to an int)
1592+
1593+
- An int (or float that will be cast to an int)
15931594
15941595
Returns
15951596
-------

plotly/graph_objects/_histogram.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,8 @@ def nbinsx(self):
825825
data. Ignored if `xbins.size` is provided.
826826
827827
The 'nbinsx' property is a integer and may be specified as:
828-
- An int (or float that will be cast to an int)
828+
829+
- An int (or float that will be cast to an int)
829830
in the interval [0, 9223372036854775807]
830831
831832
Returns
@@ -847,7 +848,8 @@ def nbinsy(self):
847848
data. Ignored if `ybins.size` is provided.
848849
849850
The 'nbinsy' property is a integer and may be specified as:
850-
- An int (or float that will be cast to an int)
851+
852+
- An int (or float that will be cast to an int)
851853
in the interval [0, 9223372036854775807]
852854
853855
Returns
@@ -1543,7 +1545,8 @@ def zorder(self):
15431545
`zorder` appear in front of those with lower `zorder`.
15441546
15451547
The 'zorder' property is a integer and may be specified as:
1546-
- An int (or float that will be cast to an int)
1548+
1549+
- An int (or float that will be cast to an int)
15471550
15481551
Returns
15491552
-------

0 commit comments

Comments
 (0)