Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Jan 2, 2024
1 parent ac1dbd4 commit b44c259
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/github/GithubInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export class GithubInstance {
privateKey: this.privateKey,
};


this.internalOctokit = new Octokit({
authStrategy: createAppAuth,
auth,
Expand All @@ -149,7 +149,6 @@ export class GithubInstance {
let page = 1;
do {
const installations = await this.internalOctokit.apps.listInstallations({ per_page: 100, page: page++ });
console.log(installations);
for (const install of installations.data) {
await this.addInstallation(install);
}
Expand Down

0 comments on commit b44c259

Please sign in to comment.