mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-09-17 22:30:59 +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__}"
|
own_class = f"{type(self).__module__}.{type(self).__name__}"
|
||||||
error_str = (
|
error_str = (
|
||||||
f"Error: Recursive attribute lookup for {name} from {own_class} is "
|
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)
|
raise AttributeError(error_str)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue