1from __future__ import annotations 2 3from finrl.main import main 4 5if __name__ == "__main__": 6 raise SystemExit(main()) 7 8