From 59a59ebf66c3d2c49633d47b3ee5eab29ee8eb2f Mon Sep 17 00:00:00 2001 From: Ori Kotek Date: Tue, 25 Jul 2023 16:36:58 +0300 Subject: [PATCH] Quick fix for github action --- pr_agent/config_loader.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pr_agent/config_loader.py b/pr_agent/config_loader.py index 6d9b443e..2e81f13b 100644 --- a/pr_agent/config_loader.py +++ b/pr_agent/config_loader.py @@ -36,8 +36,7 @@ def _find_repository_root() -> Path: if (cwd / ".git").is_dir(): return cwd cwd = cwd.parent - raise FileNotFoundError("Could not find the repository root directory") - + return None def _find_pyproject() -> Optional[Path]: """