Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0a46a commit 73166e3Copy full SHA for 73166e3
plotly/graph_objs/graph_objs.py
@@ -1139,7 +1139,9 @@ def to_graph_objs(self):
1139
if isinstance(self[key], dict):
1140
if key[:5] == 'xaxis': # allows appended integers!
1141
try:
1142
- test_if_int = int(key[5:])
+ axis_int = int(key[5:])
1143
+ if axis_int == 0:
1144
+ continue
1145
obj = XAxis()
1146
for k, v in self.pop(key).items():
1147
obj[k] = v
@@ -1149,7 +1151,9 @@ def to_graph_objs(self):
1149
1151
pass
1150
1152
elif key[:5] == 'yaxis': # allows appended integers!
1153
1154
1155
1156
1157
obj = YAxis()
1158
1159
0 commit comments