Commit 8b4a921e authored by Robert McGibbon's avatar Robert McGibbon
Browse files

Fix some return values

parent f07ac7bd
...@@ -71,7 +71,7 @@ while True: ...@@ -71,7 +71,7 @@ while True:
for name, type, descr in docstring['Returns']: for name, type, descr in docstring['Returns']:
if type == '': if type == '':
type = name type = name
print('{prefix}## @return ({type}) {descr}'.format(prefix=prefix, type=type, name=name, descr=''.join(descr))) print('{prefix}## @return ({type}) {descr}'.format(prefix=prefix, type=type, name=name, descr=' '.join(descr)))
print(declaration, end='') print(declaration, end='')
if len(docstringlines) == 0: if len(docstringlines) == 0:
......
...@@ -423,7 +423,7 @@ class CharmmPsfFile(object): ...@@ -423,7 +423,7 @@ class CharmmPsfFile(object):
If one pointer is set, pointers is simply the integer that is If one pointer is set, pointers is simply the integer that is
value of that pointer. Otherwise it is a tuple with every pointer value of that pointer. Otherwise it is a tuple with every pointer
value defined in the first line value defined in the first line
data : list list
A list of all data in the parsed section converted to `dtype' A list of all data in the parsed section converted to `dtype'
""" """
conv = CharmmPsfFile._convert conv = CharmmPsfFile._convert
......
...@@ -655,7 +655,7 @@ class Modeller(object): ...@@ -655,7 +655,7 @@ class Modeller(object):
------- -------
list list
a list of what variant was actually selected for each residue, a list of what variant was actually selected for each residue,
in the same format as the variants param in the same format as the variants parameter
""" """
# Check the list of variants. # Check the list of variants.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment