Skip to content

Commit

Permalink
[system] Fix incorrect processing of environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
mcopik committed Mar 22, 2022
1 parent ac96f44 commit dafbcec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sebs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,4 +185,4 @@ def logging_handlers(self, handlers: LoggingHandlers):


def has_platform(name: str) -> bool:
return os.environ.get(f"SEBS_WITH_{name.upper()}", "False").lower() == "True"
return os.environ.get(f"SEBS_WITH_{name.upper()}", "False").lower() == "true"

0 comments on commit dafbcec

Please sign in to comment.