Skip to content

Commit 01a0ce6

Browse files
committed
add spaces around equal sign at one spot in code
1 parent 111d3a5 commit 01a0ce6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/postgresql/flexible-server/connect-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ In this section, you add authentication code to your working directory and perfo
121121
# Call get_token() to get a token from Microsft Entra ID and add it as the password in the URI.
122122
# Note the requested scope parameter in the call to get_token, "https://ossrdbms-aad.database.windows.net/.default".
123123
credential = DefaultAzureCredential()
124-
password=credential.get_token("https://ossrdbms-aad.database.windows.net/.default").token
124+
password = credential.get_token("https://ossrdbms-aad.database.windows.net/.default").token
125125

126126
db_uri = f"postgresql://{dbuser}:{password}@{dbhost}/{dbname}?sslmode={sslmode}"
127127
return db_uri

0 commit comments

Comments
 (0)