Skip to content

Commit 15d7194

Browse files
committed
Fix for 3.8
1 parent df81704 commit 15d7194

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

referencing/typing.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from typing import Any, Iterable, Protocol, Union
24

35
try:
@@ -23,7 +25,7 @@ def name(self) -> str:
2325

2426
def resolve(
2527
self,
26-
dynamic_scope: Iterable[tuple[Schema, "Anchor"]],
28+
dynamic_scope: Iterable[tuple[Schema, Anchor]],
2729
uri: str,
2830
) -> tuple[Schema, str]:
2931
pass

0 commit comments

Comments
 (0)