Skip to content

Commit

Permalink
hotfix for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed May 23, 2024
1 parent efe15b9 commit 45dbf2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions volare/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ def get_gh_token(Self) -> Optional[str]:
token = env_token

# 2. Highest priority: the -t flag
if override := Self.override:
token = override
if Self.override is not None:
token = Self.override

return token

Expand Down

0 comments on commit 45dbf2c

Please sign in to comment.