Skip to content

Commit

Permalink
Fix formatting according to linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
ylabonte committed Aug 24, 2024
1 parent 2352d35 commit 85883f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/proconip/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ async def async_post_usrcfg_cgi(
async with async_timeout.timeout(10):
response = await client_session.post(
url=url,
headers={"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"},
headers={
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"
},
data=payload,
auth=BasicAuth(
login=config.username,
Expand Down

0 comments on commit 85883f3

Please sign in to comment.