Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun authored Jun 7, 2023
1 parent cb897de commit 3fde447
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ carried out.

class ProcessInput(Automation):
"""The process steps are defined by sequentially adding the corresponding nodes"""
start = flow.Execute(this.get_user_input) # Collect input a user has supplied
start = flow.Execute(this.get_user_input) # Collect input a user has supplied
check = flow.If(
this.does_not_need_approval # Need approval?
).Then(this.process) # No? Continue later
approval = flow.Form(forms.ApprovalForm).Group(name="admins") # Let admins approve
process = flow.Execute(this.process_input) # Generate output
this.does_not_need_approval # Need approval?
).Then(this.process) # No? Continue later
approval = flow.Form(forms.ApprovalForm).Group(name="admins") # Let admins approve
process = flow.Execute(this.process_input) # Generate output
end = flow.End()

critical = 10_000
Expand All @@ -103,4 +103,4 @@ carried out.

# Documentation

See the [documentation on readthedocs.io](https://django-automations.readthedocs.io/).
See the [documentation on readthedocs.io](https://django-automations.readthedocs.io/).

0 comments on commit 3fde447

Please sign in to comment.