mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
python: Remove redundant dest for argparse arguments.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
4d583e3d41
commit
a5dbab8fb0
@@ -11,7 +11,7 @@ sanity_check.check_venv(__file__)
|
||||
|
||||
if __name__ == '__main__':
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--coverage', dest='coverage',
|
||||
parser.add_argument('--coverage',
|
||||
action="store_true",
|
||||
default=False, help='compute test coverage')
|
||||
args = parser.parse_args()
|
||||
|
||||
Reference in New Issue
Block a user