Skip to content

Commit

Permalink
typing.OrderedDict to collections.OrderedDict
Browse files Browse the repository at this point in the history
  • Loading branch information
nycholas committed Oct 28, 2024
1 parent d3dc6f3 commit f5c497d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/flask_jsonrpc/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from __future__ import annotations

import typing as t
from collections import OrderedDict

from pydantic.main import BaseModel

Expand Down Expand Up @@ -66,4 +67,4 @@ class ServiceDescribe(BaseModel):
name: str
description: str | None = None
servers: list[ServiceServersDescribe]
methods: t.OrderedDict[str, ServiceMethodDescribe]
methods: OrderedDict[str, ServiceMethodDescribe]

0 comments on commit f5c497d

Please sign in to comment.