From c7c9d247413e2f66246a17111390350f9dc90a81 Mon Sep 17 00:00:00 2001 From: Irene Dea Date: Thu, 8 Feb 2024 22:26:18 -0800 Subject: [PATCH] Fix typo (#966) --- llmfoundry/utils/warnings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llmfoundry/utils/warnings.py b/llmfoundry/utils/warnings.py index 368c5725c3..2584ada601 100644 --- a/llmfoundry/utils/warnings.py +++ b/llmfoundry/utils/warnings.py @@ -14,7 +14,7 @@ class VersionedDeprecationWarning(DeprecationWarning): ... warnings.warn( ... VersionedDeprecationWarning( ... "Function XYZ is deprecated.", - ... after_version="2.0.0" + ... remove_version="2.0.0" ... ) ... ) ...