From cfab8eec5b0dfdd464040467f177b4947823352e Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 31 Mar 2025 14:44:12 -0700 Subject: [PATCH] fix code quality check --- litellm/anthropic/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/anthropic/__init__.py b/litellm/anthropic/__init__.py index c56a530c3c5..9902fdc553b 100644 --- a/litellm/anthropic/__init__.py +++ b/litellm/anthropic/__init__.py @@ -2,3 +2,5 @@ Anthropic module for LiteLLM """ from .messages import acreate, create + +__all__ = ["acreate", "create"]