From 2992008c44b8887f68b505057c1f596155556fcd Mon Sep 17 00:00:00 2001 From: "Mike A." Date: Mon, 2 Sep 2024 23:42:41 +0200 Subject: [PATCH] fix: Union types with `|` operator in Python 3.9 --- findmy/util/types.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/findmy/util/types.py b/findmy/util/types.py index 8c754aa..f6a7e32 100644 --- a/findmy/util/types.py +++ b/findmy/util/types.py @@ -1,5 +1,7 @@ """Utility types.""" +from __future__ import annotations + from typing import Coroutine, TypeVar T = TypeVar("T")