Skip to content

Commit

Permalink
style: line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMarble committed Aug 28, 2021
1 parent 2b68bd8 commit 44d186f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datadis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def get_supplies(token: str) -> dict:

def get_contract_detail(token: str, cups: str, distributorCode: int) -> dict:
headers = {'Authorization': f'Bearer {token}'}
data = {'cups': cups, 'distributorCode': distributorCode}

r = requests.get(_ENDPOINTS['get_contract_detail'] + f'?cups={cups}&distributorCode={distributorCode}',
r = requests.get(_ENDPOINTS['get_contract_detail']
+ f'?cups={cups}&distributorCode={distributorCode}',
headers=headers)

if r.status_code == 200:
Expand Down

0 comments on commit 44d186f

Please sign in to comment.