Skip to content

Commit

Permalink
#7625 fixed num to string conversion for nanoplot elements coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasz Mitusinski committed Jul 4, 2018
1 parent d2e1919 commit 97bbadb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beakerx/beakerx/plot/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,8 @@ def __init__(self, **kwargs):

def add(self, item):
super(NanoPlot, self).add(item)
converted = []
for l in self.chart.graphics_list:
converted = []
for x in l.x:
converted.append(str(x))
l.x = converted
Expand Down

0 comments on commit 97bbadb

Please sign in to comment.