Skip to content
Snippets Groups Projects
Commit 88706063 authored by Brandon Hewer's avatar Brandon Hewer
Browse files

Fix all doctest errors

Refs #20185
parent 7ef51389
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ This small usage example merges two compatible POLDI-files which have been loade
total_summed = SumSpectra(spectra_summed)
print("6903+6904 contains a total of {} counts.".format(int(total_summed.dataY(0)[0])))
print "Summing the counts of the single data files leads to {} counts.".format(counts_6903 + counts_6904))
print("Summing the counts of the single data files leads to {} counts.".format(counts_6903 + counts_6904))
Output:
......
......@@ -59,7 +59,7 @@ Usage
data_ws = PolynomialCorrection(data_ws, coefficients, Operation="Multiply")
print("First 5 y values: {}".format(data_ws.readY(0)[0:5]))
print "First 5 error values: {}".format(data_ws.readE(0)[0:5]))
print("First 5 error values: {}".format(data_ws.readE(0)[0:5]))
.. testoutput::
......
......@@ -38,7 +38,7 @@ Usage
result_ws = Power(data_ws, 2)
print("Squared values of first spectrum: {}".format(result_ws.readY(0)))
print "Squared values of second spectrum: {}".format(result_ws.readY(1)))
print("Squared values of second spectrum: {}".format(result_ws.readY(1)))
Output:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment