File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 77 strategy :
88 fail-fast : false
99 matrix :
10- python-version : [3.7, 3.8]
10+ python-version : [3.7, 3.8, 3.9 ]
1111 steps :
1212 - uses : actions/checkout@v2
1313 - name : Set up Python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 55 strategy :
66 fail-fast : false
77 matrix :
8- python-version : ['3.7', '3.8']
8+ python-version : ['3.7', '3.8', '3.9' ]
99 os : [ubuntu-latest, windows-latest] # macos-latest,
1010 runs-on : ${{ matrix.os }}
1111 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):
205205 return f"<DecoderComparer { self .value } :{ self .value .priority ()} >"
206206
207207
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
210212 key_info : Optional [str ] = None
211213 misc_info : Optional [str ] = None
212214
You can’t perform that action at this time.
0 commit comments