Skip to content

Commit f20eb09

Browse files
committed
Run black after update
1 parent b62c114 commit f20eb09

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

nornir_http/result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(
2828
response: Response,
2929
result: Any = None,
3030
failed: bool = False,
31-
**kwargs: Any
31+
**kwargs: Any,
3232
):
3333
super().__init__(host=host, result=result, failed=failed, **kwargs)
3434
self.response = response

nornir_http/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def http_method(
1010
url: str = "",
1111
raise_for_status: bool = False,
1212
is_error: bool = True,
13-
**kwargs: Any
13+
**kwargs: Any,
1414
) -> HTTPResult:
1515
"""
1616
This is a helper task that uses `httpx <https://www.python-httpx.org/api/>`_ to

0 commit comments

Comments
 (0)