Skip to content

Commit a0f6975

Browse files
chore(internal): fix lint error on Python 3.14
1 parent ea58fd8 commit a0f6975

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/llama_stack_client/_utils/_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def is_union(tp: Optional[Type[Any]]) -> bool:
3232
else:
3333
import types
3434

35-
return tp is Union or tp is types.UnionType
35+
return tp is Union or tp is types.UnionType # type: ignore[comparison-overlap]
3636

3737

3838
def is_typeddict(tp: Type[Any]) -> bool:

0 commit comments

Comments
 (0)