Skip to content

Commit 367420e

Browse files
fix: repo_config var in github client (#75)
1 parent bde35c9 commit 367420e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codegen/git/clients/github_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def from_token(cls, token: str | None = None) -> Self:
3838
return gh_wrapper
3939

4040
def _create_client_for_repo(self, repo_config: RepoConfig) -> Github:
41-
token = get_token_for_repo_config(repo_config=repo_config, github_type=self.type)
41+
token = get_token_for_repo_config(github_type=self.type)
4242
return Github(token, base_url=self.base_url)
4343

4444
def _get_client_for_scope(self, github_scope: GithubScope) -> Github:

0 commit comments

Comments
 (0)