mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-09-16 22:20:26 +00:00
Missing f prefix on f-strings (#882)
This commit is contained in:
parent
3c468ff558
commit
061841a314
1 changed files with 1 additions and 1 deletions
|
|
@ -305,7 +305,7 @@ class VecEnvWrapper(VecEnv):
|
|||
own_class = f"{type(self).__module__}.{type(self).__name__}"
|
||||
error_str = (
|
||||
f"Error: Recursive attribute lookup for {name} from {own_class} is "
|
||||
"ambiguous and hides attribute from {blocked_class}"
|
||||
f"ambiguous and hides attribute from {blocked_class}"
|
||||
)
|
||||
raise AttributeError(error_str)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue