Skip to content

Commit

Permalink
Fix formatting of 4278ca1
Browse files Browse the repository at this point in the history
  • Loading branch information
pgjones committed Aug 25, 2022
1 parent 4278ca1 commit 95cd3fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion h11/_connection.py
Expand Up @@ -395,7 +395,9 @@ def receive_data(self, data: bytes) -> None:
else:
self._receive_buffer_closed = True

def _extract_next_receive_event(self) -> Union[Event, Type[NEED_DATA], Type[PAUSED]]:
def _extract_next_receive_event(
self,
) -> Union[Event, Type[NEED_DATA], Type[PAUSED]]:
state = self.their_state
# We don't pause immediately when they enter DONE, because even in
# DONE state we can still process a ConnectionClosed() event. But
Expand Down

0 comments on commit 95cd3fa

Please sign in to comment.