| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 """Testable functions for {Toolname}.""" |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 """Testable functions for Antibody.""" | |
| 6 | 2 |
| 7 import logging | 3 import logging |
| 8 | 4 |
| 9 | 5 |
| 10 # https://storage.googleapis.com/chromium-infra-docs/infra/html/logging.html | 6 # https://storage.googleapis.com/chromium-infra-docs/infra/html/logging.html |
| 11 LOGGER = logging.getLogger(__name__) | 7 LOGGER = logging.getLogger(__name__) |
| 12 | 8 |
| 13 | 9 |
| 14 def add_argparse_options(parser): | 10 def add_argparse_options(parser): |
| 15 """Define command-line arguments.""" | 11 """Define command-line arguments.""" |
| 16 parser.add_argument('--my-argument', '-m', help='') | 12 parser.add_argument('--my-argument', '-m', help='') |
| OLD | NEW |