Skip to content

Commit

Permalink
fix: Union types with | operator in Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
malmeloo committed Sep 2, 2024
1 parent 99f2ee6 commit 2992008
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions findmy/util/types.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Utility types."""

from __future__ import annotations

from typing import Coroutine, TypeVar

T = TypeVar("T")
Expand Down

0 comments on commit 2992008

Please sign in to comment.