Skip to content

Commit

Permalink
Update actions.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tommygonzaleza authored Jan 30, 2025
1 parent 89085ac commit d520dc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions breathecode/registry/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,9 +789,9 @@ def process_asset_config(asset, config):
asset.with_video = True

if "gitpod" in config:
if config["gitpod"] in ["True", "true", "1"]:
if config["gitpod"] in ["True", "true", "1", True]:
asset.gitpod = True
elif config["gitpod"] in ["False", "false", "0"]:
elif config["gitpod"] in ["False", "false", "0", False]:
asset.gitpod = False

if "editor" in config:
Expand Down

0 comments on commit d520dc3

Please sign in to comment.