mirror of
https://github.com/thomashirtz/portfolio-management.git
synced 2022-03-03 23:56:42 +03:00
7 lines
156 B
Python
7 lines
156 B
Python
from gym.envs.registration import register
|
|
|
|
register(
|
|
id='Portfolio-v0',
|
|
entry_point='portfolio_management.environment.environment:PortfolioEnv',
|
|
)
|