8000 Add a missing `self`. · matplotlib/matplotlib@6d93441 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6d93441

Browse files
committed
Add a missing self.
1 parent cdce06c commit 6d93441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_agg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class BaseFilter:
101101
def get_pad(self, dpi):
102102
return 0
103103

104-
def process_image(padded_src, dpi):
104+
def process_image(self, padded_src, dpi):
105105
raise NotImplementedError("Should be overridden by subclasses")
106106

107107
def __call__(self, im, dpi):

0 commit comments

Comments
 (0)
0