Skip to content

Commit

Permalink
Fix for Python 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-phaf committed Aug 20, 2024
1 parent c0a91a6 commit 4500ec6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_edr.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import json
from pathlib import Path
from typing import Dict

import pytest
from edr_pydantic.capabilities import LandingPageModel
Expand All @@ -17,7 +18,7 @@
("simple-instance.json", Instance),
("landing-page.json", LandingPageModel),
("doc-example-extent.json", Extent),
("parameter-names.json", RootModel[dict[str, Parameter]]),
("parameter-names.json", RootModel[Dict[str, Parameter]]),
]


Expand Down

0 comments on commit 4500ec6

Please sign in to comment.