Skip to content
Snippets Groups Projects
Unverified Commit 5b697ae2 authored by Samuel Jones's avatar Samuel Jones Committed by GitHub
Browse files

Re #22515 Fixing documentation due to version changes

parent 8b8d7873
No related branches found
No related tags found
No related merge requests found
......@@ -37,14 +37,14 @@ Usage
print(ws.readE(0))
# Sort the X Axis in a Descending fashion
ws = SortXAxis(InputWorkspace='ws', Ordering='Descending', Version=2)
ws = SortXAxis(InputWorkspace='ws', Ordering='Descending')
print("In order print: Descending")
print(ws.readX(0))
print(ws.readY(0))
print(ws.readE(0))
# Sort the X Axis in a Ascending fashion
ws = SortXAxis(InputWorkspace='ws', Ordering='Ascending', Version=2)
ws = SortXAxis(InputWorkspace='ws', Ordering='Ascending')
print("In order print: Ascending")
print(ws.readX(0))
print(ws.readY(0))
......
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