Skip to content

Commit

Permalink
another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybart1337 committed Jan 16, 2024
1 parent a51df20 commit dc3c3a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

def parse_envs():
args_req = {
x: constants._VALUES[x] if x in constants._VALUES else os.environ[x]
x: constants._VALUES[x] if x in constants._VALUES else os.environ.get(x, None)
for x in constants.get_required_settings()
}
args_opt = {
Expand Down

0 comments on commit dc3c3a7

Please sign in to comment.