Skip to content

Commit 16c904e

Browse files
authored
fix: avoid redundant self passed to analyze() (#844)
1 parent 0bae439 commit 16c904e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cocoindex/op.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def process_arg(
295295

296296
base_analyze_method = getattr(self, "analyze", None)
297297
if base_analyze_method is not None:
298-
result = base_analyze_method(self, *args, **kwargs)
298+
result = base_analyze_method(*args, **kwargs)
299299
else:
300300
result = expected_return
301301
if len(attributes) > 0:

0 commit comments

Comments
 (0)