From 76cd15cb1ea0e5bb2fb5a7f3e6dc30911cedf369 Mon Sep 17 00:00:00 2001 From: Alex Streed Date: Thu, 5 Sep 2024 09:10:45 -0500 Subject: [PATCH] Import `runtime_checkable` from `typing` --- src/prefect/locking/protocol.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/prefect/locking/protocol.py b/src/prefect/locking/protocol.py index 7400e5e64d1e..369f49d4b01b 100644 --- a/src/prefect/locking/protocol.py +++ b/src/prefect/locking/protocol.py @@ -1,6 +1,4 @@ -from typing import Optional, Protocol - -from typing_extensions import runtime_checkable +from typing import Optional, Protocol, runtime_checkable @runtime_checkable