This is an automated email from the ASF dual-hosted git repository. skrawcz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/burr.git
commit cc0d8e38ae7523064c9f60256fe2a33346495810 Author: Smita Ambiger <[email protected]> AuthorDate: Tue Jan 20 20:25:23 2026 +0530 Update application.py --- burr/core/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/burr/core/application.py b/burr/core/application.py index 70fa54e4..dc8067c4 100644 --- a/burr/core/application.py +++ b/burr/core/application.py @@ -2616,7 +2616,7 @@ class ApplicationBuilder(Generic[StateType]): # there was something last_position = load_result["position"] self.state = load_result["state"] - if getattr(self, "override_state_values", None): + if self.override_state_values: self.state = self.state.update(**self.override_state_values) self.sequence_id = load_result["sequence_id"]
