mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
remove hasattr calls
This commit is contained in:
parent
9e36b0d2ea
commit
099137adac
|
@ -94,8 +94,8 @@ class ReinforcementLearner_multiproc(BaseReinforcementLearningModel):
|
|||
Hook called on bot shutdown. Close SubprocVecEnv subprocesses for clean shutdown.
|
||||
"""
|
||||
|
||||
if hasattr(self, "train_env") and self.train_env:
|
||||
if self.train_env:
|
||||
self.train_env.close()
|
||||
|
||||
if hasattr(self, "eval_env") and self.eval_env:
|
||||
if self.eval_env:
|
||||
self.eval_env.close()
|
||||
|
|
Loading…
Reference in New Issue
Block a user