Skip to content

Commit f3184a5

Browse files
committed
pep8
1 parent caeee6e commit f3184a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pylibagent/agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@ async def _create_asset(self, asset_name: Optional[str] = None,
271271
async with ClientSession(
272272
headers=self._json_headers) as session:
273273
async with session.patch(url,
274-
json=data,
275-
ssl=self.verify_ssl) as r:
274+
json=data,
275+
ssl=self.verify_ssl) as r:
276276
if r.status != 204:
277277
msg = await r.text()
278278
raise Exception(f'{msg} (error code: {r.status})')

0 commit comments

Comments
 (0)