mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
13 lines
317 B
Python
13 lines
317 B
Python
from backend.categorisation.processor import process_portfolio
|
|
|
|
|
|
def main() -> None:
|
|
portfolio_id = 569
|
|
scenarios_to_consider = [1069, 1060]
|
|
scenario_priority_order = [1069, 1060]
|
|
|
|
process_portfolio(portfolio_id, scenarios_to_consider, scenario_priority_order)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|