From a103fab7b967e8b2609c9e6ee134093996c4f2c5 Mon Sep 17 00:00:00 2001 From: Frederick Roy Date: Tue, 8 Sep 2026 14:00:26 +0900 Subject: [PATCH] add self arg to update as it is a member of DataEngine --- examples/emptyDataEngine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/emptyDataEngine.py b/examples/emptyDataEngine.py index cd94a0720..a09546716 100644 --- a/examples/emptyDataEngine.py +++ b/examples/emptyDataEngine.py @@ -13,7 +13,7 @@ def __init__(self, *args, **kwargs): def init(self): pass - def update(): + def update(self): # Function called anytime an output is accessed while the component # is dirty (input has changed) msg_info('Not implemented yet')