From 01351c6cd6375636552599140905f1d5db641fbc Mon Sep 17 00:00:00 2001 From: Jason Liu Date: Wed, 20 Mar 2024 21:27:49 -0400 Subject: [PATCH] update --- instructor/anthropic_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instructor/anthropic_utils.py b/instructor/anthropic_utils.py index 6aecd64..7f6b12f 100644 --- a/instructor/anthropic_utils.py +++ b/instructor/anthropic_utils.py @@ -9,7 +9,7 @@ try: import xml.etree.ElementTree as ET except ImportError: import warnings -warnings.warn("xmltodict and xml.etree.ElementTree modules not found. Please install them to proceed. `pip install xmltodict`", ImportWarning) + warnings.warn("xmltodict and xml.etree.ElementTree modules not found. Please install them to proceed. `pip install xmltodict`", ImportWarning) T = TypeVar("T", bound=BaseModel)