diff --git a/artiq/examples/master/repository/coredevice_examples/photon_histogram.py b/artiq/examples/master/repository/coredevice_examples/photon_histogram.py index 5a919aa4a..6c9f21fa2 100644 --- a/artiq/examples/master/repository/coredevice_examples/photon_histogram.py +++ b/artiq/examples/master/repository/coredevice_examples/photon_histogram.py @@ -13,8 +13,8 @@ class PhotonHistogram(EnvExperiment): self.setattr_device("bdd_sw") self.setattr_device("pmt") - self.setattr_argument("nbins", NumberValue(100)) - self.setattr_argument("repeats", NumberValue(100)) + self.setattr_argument("nbins", NumberValue(100, ndecimals=0, step=1)) + self.setattr_argument("repeats", NumberValue(100, ndecimals=0, step=1)) self.setattr_dataset("cool_f", 230*MHz) self.setattr_dataset("detect_f", 220*MHz)