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/table1.py

18 lines
435 B
Python

def table1(tenurekey : int):
if not tenurekey:
return 'No Tenure Key'
else:
## go and get dashbaord with tenure key
table = """
| Month | Savings |
| -------- | ------- |
| January | $250 |
| February | $80 |
| March | $420 |
"""
return table
if __name__ == '__main__':
# Example TenureKey for testing
table1('2422')