Skip to content

Commit

Permalink
Change the only : frozenset type hint to Iterable
Browse files Browse the repository at this point in the history
  • Loading branch information
adamtheturtle committed Sep 28, 2024
1 parent 0296edc commit a676a37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mock_vws/_mock_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""

import json
from collections.abc import Iterable
from dataclasses import dataclass
from typing import Any

Expand All @@ -23,7 +24,7 @@ class Route:

route_name: str
path_pattern: str
http_methods: frozenset[str]
http_methods: Iterable[str]


@beartype
Expand Down

0 comments on commit a676a37

Please sign in to comment.