Skip to content

Commit

Permalink
convert2to3 should not be defaulting to using the native converter
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebeal committed Oct 7, 2023
1 parent ecfa115 commit 79bc916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbol_utilities/conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def convert_identities2to3(sbol3_data: str) -> str:
return g.serialize(format="xml")


def convert2to3(sbol2_doc: Union[str, sbol2.Document], namespaces=None, use_native_converter: bool = True) \
def convert2to3(sbol2_doc: Union[str, sbol2.Document], namespaces=None, use_native_converter: bool = False) \
-> sbol3.Document:
"""Convert an SBOL2 document to an equivalent SBOL3 document
Expand Down

0 comments on commit 79bc916

Please sign in to comment.