diff options
| author | muss-Snippy38-lang <hitlermuss38@gmail.com> | 2026-05-19 12:57:28 +0530 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2026-06-10 19:14:18 -0400 |
| commit | e8cff2921ba169d806a15de18304f431f12700f4 (patch) | |
| tree | b920dafa5b4658b6e92fb31887282ad73d0bf070 | |
| parent | a2f8a4a6f9ac094edde937e56a3ecbd112ee448c (diff) | |
Fixed #37102 -- Used **kwargs instead of *kwargs in CountsDict.__init__().
| -rw-r--r-- | django/utils/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
