From 25f9f74e248261ad7283954746e8f83b6877d3e2 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Tue, 19 Nov 2024 13:23:18 -0800 Subject: [PATCH] no type ignore --- reflex/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/config.py b/reflex/config.py index d85df7d51..666da9d5a 100644 --- a/reflex/config.py +++ b/reflex/config.py @@ -811,7 +811,7 @@ def get_config(reload: bool = False) -> Config: sys.path.insert(0, os.getcwd()) # only import the module if it exists. If a module spec exists then # the module exists. - spec = find_spec(constants.Config.MODULE) # type: ignore + spec = find_spec(constants.Config.MODULE) cwd = Path(os.getcwd()) if not spec or ( spec.origin is not None and not Path(spec.origin).is_relative_to(cwd)