Skip to content

Commit b1da067

Browse files
committed
Remove unnecessary f-string modifier
Make the flake8's "F541 f-string is missing placeholders" happy
1 parent 242dd65 commit b1da067

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patterns/structural/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def do_the_job(self, user: str) -> None:
5656
if user == "admin":
5757
self._real_subject.do_the_job(user)
5858
else:
59-
print(f"[log] I can do the job just for `admins`.")
59+
print("[log] I can do the job just for `admins`.")
6060

6161

6262
def client(job_doer: Union[RealSubject, Proxy], user: str) -> None:

0 commit comments

Comments
 (0)