From ffaf562a8cebb6d13f2872f2ff0e5e015e21f6a3 Mon Sep 17 00:00:00 2001 From: Anthony Wu <462072+anthonywu@users.noreply.github.com> Date: Sat, 26 Oct 2024 10:29:33 -0700 Subject: [PATCH] fix type hint in test file --- src/mflux/config/runtime_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mflux/config/runtime_config.py b/src/mflux/config/runtime_config.py index 59d2d58..490f9ba 100644 --- a/src/mflux/config/runtime_config.py +++ b/src/mflux/config/runtime_config.py @@ -44,7 +44,7 @@ class RuntimeConfig: return self.config.init_image_path @property - def init_image_strength(self) -> int: + def init_image_strength(self) -> float: return self.config.init_image_strength @property