input sample: ``` def foo1(p1, p2, /, arg1=100, arg2='argos2', **kwargs): pass ``` decompiled using pycdc as: ``` def foo1(p1, p2, arg1, arg2 = (100, 'argos2'), **kwargs): pass ``` any clues how to fix it to the rescue? sample files attached [sample-1.zip](https://github.com/user-attachments/files/16533453/sample-1.zip)
input sample:
decompiled using pycdc as:
any clues how to fix it to the rescue?
sample files attached
sample-1.zip