From c73a29c1b7d0c85dfd3353177850abfc6de2c744 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Mon, 29 Aug 2022 19:13:03 -0400 Subject: [PATCH] Common: Import TypeAlias from typing_extensions --- monkey/common/types.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/monkey/common/types.py b/monkey/common/types.py index 1de247ad4..d1808d762 100644 --- a/monkey/common/types.py +++ b/monkey/common/types.py @@ -1,5 +1,4 @@ -from typing import TypeAlias - from pydantic import PositiveInt +from typing_extensions import TypeAlias HardwareID: TypeAlias = PositiveInt