SynBioDex / pySBOL2

A pure Python implementation of the SBOL standard.
Apache License 2.0
20 stars 6 forks source link

Activity.types has wrong cardinality #428

Open jakebeal opened 11 months ago

jakebeal commented 11 months ago

Activity.types should have "any" cardinality (zero or more), but currently has "optional" cardinality (zero or one).

Fixing this should be approached with caution, as it will change the type of the Activity.types property from str to list[str], which could break some code that has come to depend on this bug.