Skip to content

Commit d390683

Browse files
committed
updating comments
1 parent 2de7616 commit d390683

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

app/rooms/examples/eg008_grant_office_access_to_form_group/controller.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,14 @@ def get_form_groups(args):
3030
# Step 1. Create an API with headers with headers
3131
api_client = create_rooms_api_client(access_token=args["access_token"])
3232

33+
# Step 4 start
34+
3335
# Step 2. GET Form Groups via FormGroupsAPI
3436
form_groups_api = FormGroupsApi(api_client)
3537
response = form_groups_api.get_form_groups(account_id=args["account_id"]) # type: FormGroupSummaryList
3638

39+
# Step 4 end
40+
3741
return response.form_groups
3842

3943
@staticmethod

app/rooms/examples/eg009_assign_form_to_form_group/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def worker(args):
9090

9191
# Step 2 end
9292

93-
# Step 6 start
93+
# Step 5 start
9494

9595
# Create FormGroupFormToAssign Object
9696
form_group_to_assign = FormGroupFormToAssign(

0 commit comments

Comments
 (0)