Skip to content

Commit

Permalink
fix: lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Evoney authored Dec 28, 2023
1 parent 7d8e940 commit b5c0369
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions service.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
auth_token = env['AUTH_TOKEN']
twilio_phone_number = env['TWILIO_PHONE_NUMBER']
phone_number = env['PHONE_NUMBER']
apple_kit_string = "AppleWebKit/537.36 (KHTML, like Gecko) "
browsers = "Chrome/81.0.4044.138 Safari/537.36"
APPLE_KIT_STRING = "AppleWebKit/537.36 (KHTML, like Gecko) "
BROWSERS = "Chrome/81.0.4044.138 Safari/537.36"

header = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) " + apple_kit_string + browsers,
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) " + APPLE_KIT_STRING + BROWSERS,
'Accept': '*/*',
'Accept-Encoding': 'gzip, deflate, br',
'Accept-Language': 'en-GB,en-US;q=0.9,en;q=0.8'
Expand Down

0 comments on commit b5c0369

Please sign in to comment.