Skip to content

Commit d1a6439

Browse files
committed
Fix bug in earlier code, found via LGTM now that the arguments are explicit
1 parent f10e721 commit d1a6439

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

galgebra/mv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def _make_odd(ga, __name_or_coeffs, **kwargs):
261261
tmp = S(0)
262262
for grade in ga.n_range:
263263
if (grade + 1) % 2 == 1:
264-
tmp += Mv._make_grade(__name_or_coeffs, grade + 1, **kwargs)
264+
tmp += Mv._make_grade(ga, __name_or_coeffs, grade + 1, **kwargs)
265265
return tmp
266266

267267
# aliases

0 commit comments

Comments
 (0)