We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29fb030 commit 3456adbCopy full SHA for 3456adb
reflex/utils/exec.py
@@ -305,8 +305,7 @@ def get_reload_paths() -> Sequence[Path]:
305
module_path = Path(spec.origin).resolve().parent
306
307
while module_path.parent.name and any(
308
- sibling_file.name == "__init__.py"
309
- for sibling_file in module_path.parent.iterdir()
+ sibling_file.name == "__init__.py" for sibling_file in module_path.iterdir()
310
):
311
# go up a level to find dir without `__init__.py`
312
module_path = module_path.parent
0 commit comments