Skip to content

Commit 8ec6bd0

Browse files
committed
Fix ruff
1 parent 26fccba commit 8ec6bd0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/vws/exceptions/base_exceptions.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55

66
from __future__ import annotations
77

8-
from .response import Response
8+
from typing import TYPE_CHECKING
9+
10+
if TYPE_CHECKING:
11+
from .response import Response
912

1013

1114
class CloudRecoException(Exception):

0 commit comments

Comments
 (0)