Skip to content

Commit

Permalink
fix re-export
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb committed Oct 6, 2022
1 parent 0687659 commit 9e5081a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "xpresso"
version = "0.44.0"
version = "0.44.1"
description = "A developer centric, performant Python web framework"
authors = ["Adrian Garcia Badaracco <adrian@adriangb.com>"]
readme = "README.md"
Expand Down
4 changes: 3 additions & 1 deletion xpresso/middleware/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import asyncio

from starlette.concurrency import run_in_threadpool
from starlette.exceptions import ExceptionMiddleware as StarletteExceptionMiddleware
from starlette.exceptions import HTTPException
from starlette.middleware.exceptions import (
ExceptionMiddleware as StarletteExceptionMiddleware,
)
from starlette.requests import Request
from starlette.types import Message, Receive, Scope, Send

Expand Down

0 comments on commit 9e5081a

Please sign in to comment.