diff options
| author | Brian Potchik <brian@vector35.com> | 2024-08-14 12:56:10 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2024-08-14 12:56:10 -0400 |
| commit | 345d73252c06f151b8f67f624e6de746a095d4bd (patch) | |
| tree | 4f1521993b8bd6b1733775cf1d8a56334946421b /python/workflow.py | |
| parent | 2e31fd204efbbb035981088a5cb7d3890034b98a (diff) | |
Fix unitialized workflow machine property.
Diffstat (limited to 'python/workflow.py')
| -rw-r--r-- | python/workflow.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/workflow.py b/python/workflow.py index f5c34238..dbff138d 100644 --- a/python/workflow.py +++ b/python/workflow.py @@ -268,6 +268,7 @@ class Workflow(metaclass=_WorkflowMetaclass): assert _handle is not None self.handle = _handle self._name = core.BNGetWorkflowName(self.handle) + self._machine = None if function_handle is not None: self._machine = WorkflowMachine(function_handle) |
