Skip to content

Commit 4b28959

Browse files
fern-supportclaude
andcommitted
fix: Add type: ignore for optional oci import to match AWS pattern
Mirrors the existing pattern in lazy_aws_deps.py where optional dependencies use type: ignore since they aren't installed in CI. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 488f5d1 commit 4b28959

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cohere/manually_maintained/lazy_oci_deps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def lazy_oci() -> Any:
2424
ImportError: If the OCI SDK is not installed
2525
"""
2626
try:
27-
import oci
27+
import oci # type: ignore
2828
return oci
2929
except ImportError:
3030
raise ImportError(OCI_INSTALLATION_MESSAGE)

0 commit comments

Comments
 (0)