at master 793 B view raw
1From 816afb6a3a6a340ae2a2a06dc054dd8e65ff9d8f Mon Sep 17 00:00:00 2001 2From: Pavel Sobolev <paveloom@riseup.net> 3Date: Mon, 30 Oct 2023 20:42:31 +0300 4Subject: [PATCH] Add missing argument to the `proxy_style` initializer. 5 6--- 7 qdarktheme/_proxy_style.py | 2 +- 8 1 file changed, 1 insertion(+), 1 deletion(-) 9 10diff --git a/qdarktheme/_proxy_style.py b/qdarktheme/_proxy_style.py 11index b1fb358..f04f01e 100644 12--- a/qdarktheme/_proxy_style.py 13+++ b/qdarktheme/_proxy_style.py 14@@ -14,7 +14,7 @@ class QDarkThemeStyle(QProxyStyle): 15 16 def __init__(self): 17 """Initialize style proxy.""" 18- super().__init__() 19+ super().__init__(None) 20 21 def standardIcon( # noqa: N802 22 self, standard_icon: QStyle.StandardPixmap, option: QStyleOption | None, widget 23-- 242.42.0 25