Skip to content

Commit

Permalink
Missing f prefix on f-strings (DLR-RM#882)
Browse files Browse the repository at this point in the history
  • Loading branch information
code-review-doctor authored Apr 24, 2022
1 parent 3c468ff commit 061841a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stable_baselines3/common/vec_env/base_vec_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def __getattr__(self, name: str) -> Any:
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)

Expand Down

0 comments on commit 061841a

Please sign in to comment.