Skip to content

Commit e316a71

Browse files
committed
Fix pylint issue
1 parent f95fddc commit e316a71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vws/vws.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def _target_api_request(
5050
Returns:
5151
The response to the request made by `requests`.
5252
"""
53-
date = rfc_1123_date()
53+
date_string = rfc_1123_date()
5454
content_type = 'application/json'
5555

5656
signature_string = authorization_header(
@@ -59,7 +59,7 @@ def _target_api_request(
5959
method=method,
6060
content=content,
6161
content_type=content_type,
62-
date=date,
62+
date=date_string,
6363
request_path=request_path,
6464
)
6565

0 commit comments

Comments
 (0)