Skip to content

Commit

Permalink
default the category for a DataObject to None
Browse files Browse the repository at this point in the history
  • Loading branch information
jasquat committed Jan 16, 2024
1 parent ab600ad commit 69f5ed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SpiffWorkflow/spiff/specs/data_object.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from SpiffWorkflow.bpmn.specs.data_spec import DataObject as BpmnDataObject

class DataObject(BpmnDataObject):
def __init__(self, category, *args, **kwargs):
def __init__(self, category=None, *args, **kwargs):
super().__init__(*args, **kwargs)
self.category = category

0 comments on commit 69f5ed3

Please sign in to comment.