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 51e8ded commit 43042e7Copy full SHA for 43042e7
plotly/grid_objs/grid_objs.py
@@ -33,7 +33,7 @@ def __str__(self):
33
return string.format(name=self.name, data=data_string, id=self.id)
34
35
def __repr__(self):
36
- return 'Column("{}", {})'.format(self.data, self.name)
+ return 'Column("{0}", {1})'.format(self.data, self.name)
37
38
def to_plotly_json(self):
39
return {'name': self.name, 'data': self.data}
0 commit comments