Fix indentation in GitHubClient.py for repository name assignment, improving code readability and consistency.

Signed-off-by: Shakar Bakr <5h4k4r.b4kr@gmail.com>
This commit is contained in:
Shakar Bakr 2025-06-15 13:30:43 +03:00
parent 783f67f10b
commit e29de55f99
No known key found for this signature in database
GPG Key ID: DA55A26823AE3C28

View File

@ -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')