File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 7
7
strategy :
8
8
fail-fast : false
9
9
matrix :
10
- python-version : [3.7, 3.8]
10
+ python-version : [3.7, 3.8, 3.9 ]
11
11
steps :
12
12
- uses : actions/checkout@v2
13
13
- name : Set up Python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 5
5
strategy :
6
6
fail-fast : false
7
7
matrix :
8
- python-version : ['3.7', '3.8']
8
+ python-version : ['3.7', '3.8', '3.9' ]
9
9
os : [ubuntu-latest, windows-latest] # macos-latest,
10
10
runs-on : ${{ matrix.os }}
11
11
name : Python ${{ matrix.python-version }} on ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -205,8 +205,10 @@ def __repr__(self):
205
205
return f"<DecoderComparer { self .value } :{ self .value .priority ()} >"
206
206
207
207
208
- class CrackResult (NamedTuple , Generic [T ]):
209
- value : T
208
+ class CrackResult (NamedTuple ):
209
+ # TODO consider using Generic[T] again for value's type once
210
+ # https://bugs.python.org/issue36517 is resolved
211
+ value : Any
210
212
key_info : Optional [str ] = None
211
213
misc_info : Optional [str ] = None
212
214
You can’t perform that action at this time.
0 commit comments