Skip to content

Commit

Permalink
add: return type hinting of loadEnvironmentVariables
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosLopezElorduy authored Mar 13, 2024
1 parent 7b5cb71 commit 51689e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openvariant/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

ENV_VAR = {
'OPENVAR_PLUGIN': user_data_dir('openvariant', 'bbglab')
}
}

def loadEnvironmentVariables():
def loadEnvironmentVariables() -> None:
"""Load environment variable into the environment."""

missing_vars = set(ENV_VAR.keys()).difference(set(os.environ))
Expand Down

0 comments on commit 51689e5

Please sign in to comment.