Skip to content

Commit 0560203

Browse files
hugovkAA-Turner
andcommitted
Apply suggestions from code review
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
1 parent 82f1154 commit 0560203

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Tools/ssl/multissltests.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
"""
2626
from __future__ import print_function
2727

28-
from abc import abstractmethod
29-
from abc import ABCMeta
28+
from abc import ABCMeta, abstractmethod
3029
import argparse
3130
from datetime import datetime
3231
import logging
@@ -57,7 +56,6 @@
5756
"Run CPython tests with multiple cryptography libraries/versions."
5857
),
5958
)
60-
parser.color = True
6159
parser.add_argument(
6260
'--debug',
6361
action='store_true',
@@ -70,15 +68,15 @@
7068
)
7169
parser.add_argument(
7270
'--ssl',
73-
choices=['openssl', 'awslc', 'libressl'],
71+
choices=('openssl', 'awslc', 'libressl'),
7472
default=None,
7573
help="Which SSL lib to test. If not specified, all are tested.",
7674
)
7775
parser.add_argument(
7876
'--ssl-versions',
7977
nargs='+',
8078
default=None,
81-
help="SSL lib version(s), default depends on value passed to --ssl",
79+
help="SSL lib versions, default depends on libs passed to --ssl",
8280
)
8381
parser.add_argument(
8482
'--tests',

0 commit comments

Comments
 (0)