From e29de55f9945bb96347e7dc95f6a6db339eb96a7 Mon Sep 17 00:00:00 2001 From: Shakar Bakr <5h4k4r.b4kr@gmail.com> Date: Sun, 15 Jun 2025 13:30:43 +0300 Subject: [PATCH] Fix indentation in GitHubClient.py for repository name assignment, improving code readability and consistency. Signed-off-by: Shakar Bakr <5h4k4r.b4kr@gmail.com> --- GitHubClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitHubClient.py b/GitHubClient.py index 5e77b51..8ca14ca 100644 --- a/GitHubClient.py +++ b/GitHubClient.py @@ -16,7 +16,7 @@ class GitHubClient(Client): raise EnvironmentError self.base_url = f'{self.github_url}/' self.repos_url = f'{self.base_url}repos/' - self.repo = os.getenv('INPUT_REPO') + self.repo = os.getenv('INPUT_REPO') self.target_repo_name = os.getenv('INPUT_TARGET_REPO') self.owner = os.getenv('INPUT_OWNER')