Skip to content

Commit

Permalink
Enhance GitHubClient docstring to provide clearer context on API oper…
Browse files Browse the repository at this point in the history
…ations and usage
  • Loading branch information
Dave Arnold committed Apr 23, 2025
1 parent 51d596c commit 94d44d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eks_automation/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
SECRET_NAME = os.environ["SECRET_NAME"]

class GitHubClient:
"""A class to interact with GitHub API without relying on external Git binaries."""
"""A class to interact with GitHub API without relying on external Git binaries.
This class encapsulates all GitHub API operations for managing repositories,
branches, files, commits and other Git operations using only the requests library.
""""""
"""

def __init__(self, api_base_url, token, org_name, commit_author_name, commit_author_email, source_version=None, template_repo_name=None, config_file_name="config.json"):
"""Initialize the GitHub client
Expand Down

0 comments on commit 94d44d5

Please sign in to comment.