GeoscienceAustralia / ga_sar_workflow

InSAR processing workflow used by Geoscience Australia
Apache License 2.0
3 stars 1 forks source link

Remove "six" / Python2 compatibility from subprocess_utils.py #142

Closed truth-quark closed 3 years ago

truth-quark commented 3 years ago

There's some odd code in subprocess_utils.py relating to the use of six, a Python2/3 compatibility lib. This currently prevents subprocess utils from importing correctly, which breaks other modules.

There's no known need to support Python2 for the InSAR workflow, so it's not clear why Passang is using it. Possibly cruft from cut and paste code? @sixy6e do you have any insights here?

The required fixes are:

truth-quark commented 3 years ago

Fixed with PR #145.