Skip to content

Commit

Permalink
chore: black .
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and BobTheBuidler committed Nov 18, 2024
1 parent 6de384e commit 89b84ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dank_mids/_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,8 @@ def bisected(self) -> Generator[Tuple[_Request, ...], None, None]:
# set `self.calls` output to var so its only computed once
calls = tuple(self.calls)
half = len(calls) // 2
yield calls[: half]
yield calls[half :]
yield calls[:half]
yield calls[half:]

@property
def is_full(self) -> bool:
Expand Down

0 comments on commit 89b84ea

Please sign in to comment.