Skip to content

Commit

Permalink
Fix code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Skaronator committed Nov 24, 2023
1 parent 139bb38 commit c9fba8f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyprusalink/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,11 @@ def _extract_digest_params(self, headers: dict[str]) -> None:

@asynccontextmanager
async def request(
self, method: str, path: str, json_data: dict | None = None,
try_auth: bool = True
self,
method: str,
path: str,
json_data: dict | None = None,
try_auth: bool = True,
) -> AsyncGenerator[ClientResponse, None]:
"""Make a request to the PrusaLink API."""
url = f"{self.host}{path}"
Expand Down

0 comments on commit c9fba8f

Please sign in to comment.