Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix distinction between two calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kliem committed Oct 29, 2021
1 parent 6c08ce1 commit 04a1f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/libs/giac/giac.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2021,7 +2021,7 @@ class GiacFunction(Pygen):
# FIXME? improve with a vector, or improve Pygen(list)
right = Pygen(args).eval()
elif n == 1:
right = Pygen(args[0])
right = Pygen(args[0]).eval()
else:
right = GIACNULL
if isinstance(self, Pygen) == False:
Expand Down

0 comments on commit 04a1f01

Please sign in to comment.