Skip to content

Commit

Permalink
fixed docstring with string literal '\n\n'
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-doty committed Mar 29, 2022
1 parent c8a8970 commit d482066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scadnano/scadnano.py
Original file line number Diff line number Diff line change
Expand Up @@ -3939,7 +3939,7 @@ def to_table(
.. code-block:: python
plate_maps = design.plate_maps()
maps_strs = '\n\n'.join(plate_map.to_table() for plate_map in plate_maps)
maps_strs = '\\n\\n'.join(plate_map.to_table() for plate_map in plate_maps)
from IPython.display import display, Markdown
display(Markdown(maps_strs))
Expand Down

0 comments on commit d482066

Please sign in to comment.