Skip to content

Commit

Permalink
fixed Sphinx docstring error due to *'s being interpreted as emphasis
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-doty committed Jun 11, 2021
1 parent 3d62c92 commit 49a259e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scadnano/scadnano.py
Original file line number Diff line number Diff line change
Expand Up @@ -5632,10 +5632,11 @@ def _write_plates_default(self, directory: str, filename: Optional[str], strands
workbook.save(filename_plate)

def to_oxdna_format(self) -> Tuple[str, str]:
""" Exports to oxdna format.
"""Exports to oxdna format.
:return: two strings that are the contents of the *.conf and *.top file
suitable for reading by oxdna (https://sulcgroup.github.io/oxdna-viewer/)
:return:
two strings that are the contents of the .conf and .top file
suitable for reading by oxdna (https://sulcgroup.github.io/oxdna-viewer/)
"""
system = _oxdna_convert(self)
return system.ox_dna_output()
Expand Down

0 comments on commit 49a259e

Please sign in to comment.