diff --git a/Week05/awaitme_fevzi_bagriacik.py b/Week05/awaitme_fevzi_bagriacik.py new file mode 100644 index 00000000..4b0394a8 --- /dev/null +++ b/Week05/awaitme_fevzi_bagriacik.py @@ -0,0 +1,7 @@ +import asyncio + +def awaitme(func): + async def wrapper(*args, **kwargs): + result = func(*args, **kwargs) + return result + return wrapper