An issue was encountered when a default arg value was a list ``` def func(a=[]): ... ``` the base bug found is that the dict mixing default args and values had them swapped around. The fix and a test case is added in the PR.
An issue was encountered when a default arg value was a list
the base bug found is that the dict mixing default args and values had them swapped around.
The fix and a test case is added in the PR.