Skip to content

Commit 148ded5

Browse files
authored
Use string templates
1 parent c355b16 commit 148ded5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlalchemy_bigquery/parse_url.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ def parse_url(url): # noqa: C901
6666

6767
if hasattr(url, 'username'):
6868
username = url.username or None
69-
logger.critical('parse_url.py username', username)
69+
logger.critical(f'parse_url.py username: {username}')
7070

7171
if hasattr(url, 'email'):
7272
email = url.email or None
73-
logger.critical('parse_url.py email', email)
73+
logger.critical(f'parse_url.py email: {email}')
7474

7575
project_id = url.host
7676
location = None

0 commit comments

Comments
 (0)