From b390aae17e1d853fd5e7ea053d38de02ec5c9dba Mon Sep 17 00:00:00 2001 From: Jacques Troussard Date: Mon, 17 Feb 2020 15:45:15 -0500 Subject: [PATCH] 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 --- docs/examples/linkedin.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/linkedin.rst b/docs/examples/linkedin.rst index 9279b5fe..2140f773 100644 --- a/docs/examples/linkedin.rst +++ b/docs/examples/linkedin.rst @@ -34,7 +34,7 @@ command line interactive example below. >>> # Redirect user to LinkedIn for authorization >>> authorization_url, state = linkedin.authorization_url(authorization_base_url) - >>> print("Please go here and authorize, {}".format(authorization_url)) + >>> print(f"Please go here and authorize: {authorization_url}") >>> # Get the authorization verifier code from the callback url >>> redirect_response = input('Paste the full redirect URL here:')