Skip to content

Commit b527b7f

Browse files
fix
1 parent b716bda commit b527b7f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/async/sending/sendInteractiveButtonsAsync.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ async def main():
2424
"Check this out",
2525
"Hope you like it"
2626
)
27-
if response.code == 200: print(response.data)
27+
if response.code == 200:
28+
print(response.data)
2829

2930
if __name__ == '__main__':
3031
asyncio.run(main())

examples/async/sending/sendInteractiveButtonsReplyAsync.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ async def main():
2020
"Check this out",
2121
"Hope you like it"
2222
)
23-
if response.code == 200: print(response.data)
23+
if response.code == 200:
24+
print(response.data)
2425

2526
if __name__ == '__main__':
2627
asyncio.run(main())

0 commit comments

Comments
 (0)