Open Russell-Jones-OxPhys opened 5 years ago
I meant to apply these changes and send a PR, but it seems more useful to just note that the changes are needed-- sorry if you've already done these.
Sorry, I should have responded to this ages ago. Python 3 compatibility is currently not a priority hence why I haven't sorted this. Since it doesn't change the functionality for Python 2 at all, I'll change this in the next set of commits anyway. Thanks for the pointer!
Apply PEP 3113-- removal of parameter tuple unpacking, i.e. def fn(x, (y, z)) is not allowed in Python 3
Similar for lambdas
lambda (x, y) -> lambda x, y
Tabs vs ' '*4
\t -> ' ' (PEP 8)