Skip to content

Commit

Permalink
added initialization message
Browse files Browse the repository at this point in the history
  • Loading branch information
rvosa committed Oct 3, 2024
1 parent 203453f commit 4aa6389
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions barcode_validator/github.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import subprocess
from fileinput import filename

import requests
import os
from nbitk.config import Config
Expand All @@ -18,6 +20,7 @@ def __init__(self, config: Config):
"Authorization": f"token {self.github_token}",
"Accept": "application/vnd.github.v3+json"
}
self.logger.info(f'GitHub client initialized for {self.repo_owner}/{self.repo_name}')

def get_open_prs(self):
"""
Expand Down

0 comments on commit 4aa6389

Please sign in to comment.