mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Update Base5ActionRLEnv.py
Fix init
This commit is contained in:
parent
1d5abe5b75
commit
3436e8aa1d
|
@ -23,7 +23,7 @@ class Base5ActionRLEnv(BaseEnvironment):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, *args, action_space_type: str = "Discrete", **kwargs):
|
def __init__(self, *args, action_space_type: str = "Discrete", **kwargs):
|
||||||
super().__init__(**kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
self.action_space_type = action_space_type
|
self.action_space_type = action_space_type
|
||||||
self.actions = Actions
|
self.actions = Actions
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user