From d0f6eafbbc1ade4105d03ca48515191dd5d36e7e Mon Sep 17 00:00:00 2001 From: dbasunag Date: Fri, 23 Aug 2024 13:58:51 -0400 Subject: [PATCH] utils.py file is not being collected --- apps/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/utils.py b/apps/utils.py index 8ddaecb..3b1add6 100644 --- a/apps/utils.py +++ b/apps/utils.py @@ -82,5 +82,5 @@ def all_python_files() -> Iterable[str]: continue for filename in files: - if filename.endswith(".py") and filename != os.path.split(__file__)[-1]: + if filename.endswith(".py"): yield os.path.join(root, filename)