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

Fix some return values

parent f07ac7bd
......@@ -71,7 +71,7 @@ while True:
for name, type, descr in docstring['Returns']:
if type == '':
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='')
if len(docstringlines) == 0:
......
......@@ -423,7 +423,7 @@ class CharmmPsfFile(object):
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 defined in the first line
data : list
list
A list of all data in the parsed section converted to `dtype'
"""
conv = CharmmPsfFile._convert
......
......@@ -655,7 +655,7 @@ class Modeller(object):
-------
list
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.
......
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