Skip to content

Commit

Permalink
f missing after return (#114)
Browse files Browse the repository at this point in the history
from >>> return "You are not signed in! {web.sign_in_snippet}"

to >>> return f"You are not signed in! {web.sign_in_snippet}"
  • Loading branch information
bekishore committed Oct 31, 2021
1 parent 890c80d commit 7a899fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/web_tutorial.rst
Expand Up @@ -134,7 +134,7 @@ button in your page:
::

else:
return "You are not signed in! {web.sign_in_snippet}"
return f"You are not signed in! {web.sign_in_snippet}"


Now, you should be able to sign in with your repl.it account. If you're having issues,
Expand Down

0 comments on commit 7a899fb

Please sign in to comment.