8000 Remove the * as this callback is used internally without more than 1 arg · matplotlib/matplotlib@12aa238 · GitHub
[go: up one dir, main page]

Skip to content

Commit 12aa238

Browse files
committed
Remove the * as this callback is used internally without more than 1 arg
- And it's a private method
1 parent 1443178 commit 12aa238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/cbook/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def connect(self, s, func):
213213

214214
# Keep a reference to sys.is_finalizing, as sys may have been cleared out
215215
# at that point.
216-
def _remove_proxy(self, proxy, *, _is_finalizing=sys.is_finalizing):
216+
def _remove_proxy(self, proxy, _is_finalizing=sys.is_finalizing):
217217
if _is_finalizing():
218218
# Weakrefs can't be properly torn down at that point anymore.
219219
return

0 commit comments

Comments
 (0)
0