StanSensitivity icon indicating copy to clipboard operation
StanSensitivity copied to clipboard

Have script work with python 2 and python 3

Open rgiordan opened this issue 5 years ago • 1 comments

If python 2 is the system default, the script will fail with an OrderedDict error.

rgiordan avatar May 22 '19 23:05 rgiordan

The OrderedDict constructor and update() method both accept keyword arguments, but their order is lost because Python’s function call semantics pass-in keyword arguments using a regular unordered dictionary.

nick0072 avatar Jun 03 '19 14:06 nick0072