We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7423af7 + 3bf5451 commit 2115a97Copy full SHA for 2115a97
Week05/awaitme_ece_akinci.py
@@ -0,0 +1,9 @@
1
+import asyncio
2
+
3
+def awaitme(func):
4
+ async def _wrapper(*args,**kwargs):
5
+ result = func(*args,**kwargs)
6
+ if asyncio.iscoroutine(result):
7
+ return await result
8
+ return result
9
+ return _wrapper
0 commit comments