I was reading the following sample code
fkwargs = dict()
fkwargs.update(**eval('dict(' + args.dic+ ')'))
I understand eval means convert the string to dictionary, but I don't understand why eval had two ** in the front?
Can anyone help me?