Skip to content

Commit

Permalink
strip out spaces for people like me that dont follow the directions
Browse files Browse the repository at this point in the history
Signed-off-by: Zack Koppert <[email protected]>
  • Loading branch information
zkoppert committed Mar 8, 2024
1 parent f237ce7 commit 408fd2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stale_repos.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ def get_inactive_repos(github_connection, inactive_days_threshold, organization)

exempt_topics = os.getenv("EXEMPT_TOPICS")
if exempt_topics:
exempt_topics = exempt_topics.split(",")
exempt_topics = exempt_topics.replace(" ", "").split(",")
print(f"Exempt topics: {exempt_topics}")

exempt_repos = os.getenv("EXEMPT_REPOS")
if exempt_repos:
exempt_repos = exempt_repos.split(",")
exempt_repos = exempt_repos.replace(" ", "").split(",")
print(f"Exempt repos: {exempt_repos}")

for repo in repos:
Expand Down

0 comments on commit 408fd2b

Please sign in to comment.