diff --git a/dank_mids/_requests.py b/dank_mids/_requests.py index ea28229d..d877fd0b 100644 --- a/dank_mids/_requests.py +++ b/dank_mids/_requests.py @@ -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: