Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpetrovic committed Jan 10, 2025
1 parent cd34af2 commit e919b21
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sdk/src/beta9/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ def try_env(env: str, default: EnvValue) -> Union[EnvValue, bool]:
try:
if target_type is bool:
return env_val.lower() in ["true", "1", "yes", "on"]
value = target_type(env_val) or default
print(value)
return value
return target_type(env_val) or default
except (ValueError, TypeError):
return default

0 comments on commit e919b21

Please sign in to comment.