File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ nosetests.xml
4545coverage.xml
4646* .cover
4747.hypothesis /
48- tests /** /results /** /* .mismatch.json
48+ tests /** /results /** /* .mismatch.jsonc
4949
5050# Translations
5151* .mo
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Version 0.14.3
4+
5+ - fix: add ` unsubscribe ` method to ` AutorunReturnType ` protocol
6+
37## Version 0.14.2
48
59- refactor: middleware functions can now return ` None ` to cancel an action or event
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " python-redux"
3- version = " 0.14.2 "
3+ version = " 0.14.3 "
44description = " Redux implementation for Python"
55authors = [" Sassan Haradji <sassanh@gmail.com>" ]
66license = " Apache-2.0"
Original file line number Diff line number Diff line change @@ -169,6 +169,8 @@ def subscribe(
169169 keep_ref : bool | None = None ,
170170 ) -> Callable [[], None ]: ...
171171
172+ def unsubscribe (self : AutorunReturnType ) -> None : ...
173+
172174
173175class EventSubscriber (Protocol ):
174176 def __call__ (
You can’t perform that action at this time.
0 commit comments