Skip to content

Commit 7e16b3b

Browse files
committed
fix(mymdc): remove use of type keyword for ScopedClient alias
1 parent ac33e97 commit 7e16b3b

File tree

1 file changed

+1
-1
lines changed
  • src/zulip_write_only_proxy/routers

1 file changed

+1
-1
lines changed

src/zulip_write_only_proxy/routers/mymdc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .. import logger, models, mymdc
77
from .api import get_client
88

9-
type ScopedClient = Annotated[models.ScopedClient, Depends(get_client)]
9+
ScopedClient = Annotated[models.ScopedClient, Depends(get_client)]
1010

1111

1212
async def proxy_request(mymdc_path: str, params) -> Response:

0 commit comments

Comments
 (0)