Skip to content

Commit b43493e

Browse files
committed
Fix broken type annotation
1 parent ad85c65 commit b43493e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/opencosmo/spatial/protocols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def intersects(self, other: "Region") -> bool: ...
2626
def contains(self, other: SpatialObject): ...
2727
def into_base_convention(
2828
self,
29-
converters: list[UnitApplicator],
30-
from_: UnitConvention,
29+
converters: list["UnitApplicator"],
30+
from_: "UnitConvention",
3131
unit_kwargs: dict[str, Any],
3232
): ...
3333

0 commit comments

Comments
 (0)