Skip to content

Commit b390aae

Browse files
Update docs/examples/linkedin.rst
First I'm seeing f strings. I've always been happy with format method, but I'll check the docs and give these a whirl. Co-Authored-By: David Baumgold <[email protected]>
1 parent 0ee5358 commit b390aae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/examples/linkedin.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ command line interactive example below.
3434
3535
>>> # Redirect user to LinkedIn for authorization
3636
>>> authorization_url, state = linkedin.authorization_url(authorization_base_url)
37-
>>> print("Please go here and authorize, {}".format(authorization_url))
37+
>>> print(f"Please go here and authorize: {authorization_url}")
3838
3939
>>> # Get the authorization verifier code from the callback url
4040
>>> redirect_response = input('Paste the full redirect URL here:')

0 commit comments

Comments
 (0)