Skip to content

Commit

Permalink
use os.getenv to make github actions happy
Browse files Browse the repository at this point in the history
  • Loading branch information
smoors committed May 28, 2024
1 parent 5907728 commit 350d004
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/vsc/eb_hooks/hooks_hydra.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
},
}

LOCAL_ARCH = os.environ['VSC_ARCH_LOCAL']
LOCAL_ARCH_SUFFIX = os.environ['VSC_ARCH_SUFFIX']
LOCAL_ARCH = os.getenv('VSC_ARCH_LOCAL')
LOCAL_ARCH_SUFFIX = os.getenv('VSC_ARCH_SUFFIX')


def parse_hook(ec, *args, **kwargs): # pylint: disable=unused-argument
Expand Down

0 comments on commit 350d004

Please sign in to comment.