This repository has been archived on 2026-06-13. You can view files and clone it, but cannot push or open issues/pull-requests.
Polaryx/modular runner approach/modules/image1.py

11 lines
280 B
Python

def image1(tenurekey : int):
if not tenurekey:
return 'No Tenure Key'
else:
## go and get dashbaord with tenure key
return "![alt text](./modules/thumbsup.PNG)"
if __name__ == '__main__':
# Example TenureKey for testing
image1('2422')