Skip to content

Commit

Permalink
Remove color for now it breaks 2d plots (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen authored and WilliamHPNielsen committed Jun 26, 2017
1 parent 1d205e6 commit 8d1f7e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qcodes/utils/wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def _save_individual_plots(data, inst_meas):
plot = MatPlot()
# simple_parameter
inst_meas_name = "{}_{}".format(i._instrument.name, i.name)
plot.add(getattr(data, inst_meas_name), color=color)
plot.add(getattr(data, inst_meas_name))
plot.subplots[0].set_title(title)
plot.subplots[0].grid()
plot.save("{}_{:03d}.pdf".format(plot.get_default_title(), counter_two))
Expand Down

0 comments on commit 8d1f7e9

Please sign in to comment.