Skip to content

Commit

Permalink
ci: Fix lint errors.
Browse files Browse the repository at this point in the history
Now that we're using python 3.12 for the `lint` github action, we need
to fix the errors that it is reporting.
  • Loading branch information
favilo committed Nov 13, 2024
1 parent 348a0e9 commit a325ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esrally/client/asynchronous.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async def send(self, conn: "Connection") -> "ClientResponse":
self.response = self.response_class(
self.method,
self.original_url,
writer=self._writer, # type: ignore[arg-type] # TODO remove this ignore when introducing type hints
writer=self._writer,
continue100=self._continue,
timer=self._timer,
request_info=self.request_info,
Expand Down

0 comments on commit a325ab7

Please sign in to comment.