Closed ingo-m closed 7 years ago
Merging #57 into devel will not change coverage. The diff coverage is
n/a
.
@@ Coverage Diff @@
## devel #57 +/- ##
=====================================
Coverage 3.65% 3.65%
=====================================
Files 6 6
Lines 847 847
=====================================
Hits 31 31
Misses 816 816
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update b5ed056...6bb41bf. Read the comment docs.
I removed the redundant
sys
argument retrieval. The input arguments were retrieved twice, once usingsys
, and once usingargparse
. The list (args
) retrieved withsys
was subsequently overwritten by a namespace object fromargparse
. This is just a suggestion, but I think it is more pythonic not include redundant code.