-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adapt viirs2pps also to viirs_compact #85
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #85 +/- ##
==========================================
- Coverage 77.37% 77.27% -0.11%
==========================================
Files 21 21
Lines 1472 1474 +2
Branches 125 126 +1
==========================================
Hits 1139 1139
- Misses 306 308 +2
Partials 27 27
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Pull Request Test Coverage Report for Build 8204486498Details
💛 - Coveralls |
@@ -41,6 +41,9 @@ | |||
help="Output directory where to store the level1c file") | |||
parser.add_argument('--iband', action='store_true', | |||
help="Iband resolution include I01-I03, M15-M16 and optional M09, M14") | |||
parser.add_argument('--reader', type=str, nargs='?', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we really handle nargs (multiple readers) and if, how does it work? Try the first one first?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The nargs ='?' means that the argument can be present or not https://docs.python.org/3/library/argparse.html.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are correct. I have misundertsood it.
pytest level1c4pps
flake8