From 9b3dac116afcad6df19b80491f5a0b9b20b65fef Mon Sep 17 00:00:00 2001 From: Elad Cohen Date: Sun, 26 May 2024 15:22:17 +0300 Subject: [PATCH] wip --- python/test-assets/wing.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python/test-assets/wing.py b/python/test-assets/wing.py index e9dbaf91..9ef6cff6 100644 --- a/python/test-assets/wing.py +++ b/python/test-assets/wing.py @@ -177,6 +177,12 @@ def send_email(self, **kwargs): def send_raw_email(self, **kwargs): return self.client.send_raw_email(**kwargs) +def try_lifted(id: str): + try: + return lifted(id) + except Exception as e: + return None + def lifted(id: str): envValue = os.getenv(f"WING_CLIENTS") if envValue: