This repository has been archived on 2026-06-13. You can view files and clone it, but cannot push or open issues/pull-requests.
|
def image1(tenurekey : int):
|
|
if not tenurekey:
|
|
return 'No Tenure Key'
|
|
else:
|
|
## go and get dashbaord with tenure key
|
|
return ""
|
|
|
|
|
|
if __name__ == '__main__':
|
|
# Example TenureKey for testing
|
|
image1('2422') |