From a47057b174eb10f88206322488dcd1b0f562e78f Mon Sep 17 00:00:00 2001 From: Ebrukoksal <114864294+Ebrukoksal@users.noreply.github.com> Date: Tue, 24 Mar 2026 21:38:10 +0300 Subject: [PATCH] Add awaitme decorator for asynchronous functions --- Week05/awaitme_ebru_koksal.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Week05/awaitme_ebru_koksal.py diff --git a/Week05/awaitme_ebru_koksal.py b/Week05/awaitme_ebru_koksal.py new file mode 100644 index 00000000..568e577a --- /dev/null +++ b/Week05/awaitme_ebru_koksal.py @@ -0,0 +1,4 @@ +def awaitme(func): + async def wrapper(*args, **kwargs): + return func(*args, **kwargs) + return wrapper