Replies: 2 comments
-
|
Interesting. After a quick look this change pops out at me: a2cb45e#diff-d2e4fa0edf80ad20b9f3c6a2f2d3cfffebccc092c73570e50c3e278bbfdbb6eaR544-R545 line 544, 545 in core.py |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
That is a more recent change that most of the related code. I still don't see how it could lead to the exception because that was supposed to be just moving where the conversion to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I just noticed that in one test of another project I got the following error:
That was from this test run in the other project. The result is not reproducible so it is hard to say what caused it right now, but I wanted to report it in case it comes up in other places. The surrounding code in
expandandderivativeshas not changed recently as far as I can tell.linear_combothere can either be a dict or a list.derivativeschecksexpandedwhich checks iflinear_combois a list and then callsexpandwhen it is andexpandconverts the list to a dict. TheTypeErrorcomes fromexpandcallingpop()on a dict instead of a list. I haven't been able to see how the code could end up withlinear_comboalready a dict andexpandgetting called.Beta Was this translation helpful? Give feedback.
All reactions