From 6c7abe7935581fe9ba56c9ba256cd59874affb55 Mon Sep 17 00:00:00 2001 From: David Murphy < dmurphy@saltstack.com> Date: Wed, 15 Nov 2023 14:12:08 -0700 Subject: [PATCH] Fix reviewers commited suggestion --- salt/utils/odict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/utils/odict.py b/salt/utils/odict.py index b60d94aae5e..b31bb020121 100644 --- a/salt/utils/odict.py +++ b/salt/utils/odict.py @@ -79,7 +79,7 @@ except (ImportError, AttributeError): "The Salt backport `OrderedDict` class introduced for Python 2 " "has been deprecated, and is set to be removed in {version}. " "Please import `OrderedDict` from `collections`.", - category=DeprecationWarning + category=DeprecationWarning, ) super().__init__()