Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
mnot committed Feb 18, 2024
1 parent fce91b0 commit 5975d59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion redbot/formatter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Formatters for REDbot output.
"""


from collections import defaultdict
from configparser import SectionProxy
import inspect
Expand Down
1 change: 0 additions & 1 deletion redbot/formatter/har.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
HAR Formatter for REDbot.
"""


import datetime
import json
from typing import Optional, Any, Dict, List
Expand Down
9 changes: 3 additions & 6 deletions redbot/type.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@
class HttpResponseExchange(Protocol):
def response_start(
self, status_code: bytes, status_phrase: bytes, res_hdrs: RawHeaderListType
) -> None:
...
) -> None: ...

def response_body(self, chunk: bytes) -> None:
...
def response_body(self, chunk: bytes) -> None: ...

def response_done(self, trailers: RawHeaderListType) -> None:
...
def response_done(self, trailers: RawHeaderListType) -> None: ...

0 comments on commit 5975d59

Please sign in to comment.