Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ofelix03/916df6f272ac77d112dea2d9c768b565 to your computer and use it in GitHub Desktop.

Select an option

Save ofelix03/916df6f272ac77d112dea2d9c768b565 to your computer and use it in GitHub Desktop.
extract-from-create-method-line-12-to-17.py
if "internal_hold" in vals and vals["internal_hold"]:
vals["state"] = "internally_held"
elif "internal_hold" in vals and not vals["internal_hold"]:
vals["state"] = "draft"
else:
vals["state"] = "draft"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment