Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
prryplatypus committed Dec 8, 2022
1 parent 31ea38f commit a76c7ca
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sanic/response/types.py
Expand Up @@ -18,9 +18,13 @@
from sanic.compat import Header
from sanic.cookies import CookieJar
from sanic.exceptions import SanicException, ServerError
from sanic.helpers import has_message_body, remove_entity_headers
from sanic.helpers import (
Default,
_default,
has_message_body,
remove_entity_headers,
)
from sanic.http import Http
from sanic.helpers import Default, _default


if TYPE_CHECKING:
Expand Down

0 comments on commit a76c7ca

Please sign in to comment.