Skip to content

Commit

Permalink
Use strip short notation
Browse files Browse the repository at this point in the history
  • Loading branch information
domna committed Nov 10, 2023
1 parent 783618f commit 29531ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev_tools/nyaml2nxdl/nyaml2nxdl_forward_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def handle_each_part_doc(text):
Formated text
"""

clean_txt = text.strip().strip('"')
clean_txt = text.strip(' "')

if not clean_txt.startswith("xref:"):
return format_nxdl_doc(check_for_mapping_char_other(clean_txt)).strip()
Expand Down

0 comments on commit 29531ac

Please sign in to comment.