Skip to content

Commit 50c10c6

Browse files
fix: highside token typo (#97)
1 parent c2d36d4 commit 50c10c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codegen/git/configs/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def __init__(self) -> None:
66
self.ENV = os.environ.get("ENV", "sandbox")
77
self.GITHUB_ENTERPRISE_URL = self._get_env_var("GITHUB_ENTERPRISE_URL")
88
self.LOWSIDE_TOKEN = self._get_env_var("LOWSIDE_TOKEN")
9-
self.HIGHSIDE_TOKEN = self._get_env_var("HIGHISDE_TOKEN")
9+
self.HIGHSIDE_TOKEN = self._get_env_var("HIGHSIDE_TOKEN")
1010

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

0 commit comments

Comments
 (0)