Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
eladcon committed May 26, 2024
1 parent a407fdb commit 9b3dac1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions python/test-assets/wing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9b3dac1

Please sign in to comment.