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: