mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
11 lines
185 B
Python
11 lines
185 B
Python
from backend.categorisation.processor import process_portfolio
|
|
|
|
|
|
def main() -> None:
|
|
portfolio_id = 556
|
|
|
|
process_portfolio(portfolio_id)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|