We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 295bef0 commit 9a7d771Copy full SHA for 9a7d771
tksvg/__init__.py
@@ -47,7 +47,7 @@ def configure(self, **kwargs):
47
"""Configure the image with SVG options and pass to PhotoImage.configure"""
48
svg_options = {key: kwargs.pop(key) for key in self.__svg_options if key in kwargs}
49
if kwargs:
50
- return tk.PhotoImage.configure(self, **kwargs)
+ tk.PhotoImage.configure(self, **kwargs)
51
52
options = ""
53
for key, value in svg_options.items():
0 commit comments