File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
jobs :
8
8
lint :
9
9
runs-on : ubuntu-latest
10
+ strategy :
11
+ fail-fast : false
10
12
steps :
11
13
- uses : actions/checkout@v2
12
14
- uses : actions/setup-python@v1
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
- import argparse
4
3
import sys
4
+ import argparse
5
5
from typing import List , Tuple
6
6
7
7
import testcases
@@ -33,9 +33,7 @@ def get_args():
33
33
default = False ,
34
34
help = "turn on debug logs" ,
35
35
)
36
- parser .add_argument (
37
- "-s" , "--server" , help = "server implementations (comma-separated)"
38
- )
36
+ parser .add_argument ("-s" , "--server" , help = "server implementations (comma-separated)" )
39
37
parser .add_argument (
40
38
"-c" , "--client" , help = "client implementations (comma-separated)"
41
39
)
You can’t perform that action at this time.
0 commit comments