Skip to content

Commit

Permalink
fix: highside token typo (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
christinewangcw authored Jan 25, 2025
1 parent c2d36d4 commit 50c10c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codegen/git/configs/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def __init__(self) -> None:
self.ENV = os.environ.get("ENV", "sandbox")
self.GITHUB_ENTERPRISE_URL = self._get_env_var("GITHUB_ENTERPRISE_URL")
self.LOWSIDE_TOKEN = self._get_env_var("LOWSIDE_TOKEN")
self.HIGHSIDE_TOKEN = self._get_env_var("HIGHISDE_TOKEN")
self.HIGHSIDE_TOKEN = self._get_env_var("HIGHSIDE_TOKEN")

def _get_env_var(self, var_name, required: bool = False) -> str | None:
value = os.environ.get(var_name)
Expand Down

0 comments on commit 50c10c6

Please sign in to comment.