Skip to content

Commit

Permalink
Merge pull request #377 from sartography/feature/data-obj-cat-default…
Browse files Browse the repository at this point in the history
…-none

default the category for a DataObject to None
  • Loading branch information
essweine authored Jan 16, 2024
2 parents ab600ad + 69f5ed3 commit 5b768ad
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 5b768ad

Please sign in to comment.