From e8cff2921ba169d806a15de18304f431f12700f4 Mon Sep 17 00:00:00 2001 From: muss-Snippy38-lang Date: Tue, 19 May 2026 12:57:28 +0530 Subject: Fixed #37102 -- Used **kwargs instead of *kwargs in CountsDict.__init__(). --- django/utils/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/html.py b/django/utils/html.py index 71122ac79e..63db147ff1 100644 --- a/django/utils/html.py +++ b/django/utils/html.py @@ -278,7 +278,7 @@ def smart_urlquote(url): class CountsDict(dict): def __init__(self, *args, word, **kwargs): - super().__init__(*args, *kwargs) + super().__init__(*args, **kwargs) self.word = word def __missing__(self, key): -- cgit v1.3