henrikingo commented on code in PR #86: URL: https://github.com/apache/otava/pull/86#discussion_r2265255543
########## otava/main.py: ########## @@ -15,21 +15,21 @@ # specific language governing permissions and limitations # under the License. -import argparse import copy import logging import sys from dataclasses import dataclass from datetime import datetime, timedelta from typing import Dict, List, Optional +import configargparse Review Comment: Actually it is common to `import configargparse as argparse` to avoid having to change the rest of the code. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
