File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Version 0.10.5
4+
5+ - fix: ` self_workers ` in ` Store.__init__ ` -> local variable ` workers `
6+
37## Version 0.10.4
48
59- chore: GitHub workflow to publish pushes on ` main ` branch to PyPI
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " python-redux"
3- version = " 0.10.4 "
3+ version = " 0.10.5 "
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 @@ -91,11 +91,11 @@ def __init__(
9191 self ._event_handlers_queue = queue .Queue [
9292 tuple [EventHandler [Event ], Event ] | None
9393 ]()
94- self_workers = [
94+ workers = [
9595 _SideEffectRunnerThread (self ._event_handlers_queue )
9696 for _ in range (self .store_options .threads )
9797 ]
98- for worker in self_workers :
98+ for worker in workers :
9999 worker .start ()
100100
101101 self ._is_running = Lock ()
You can’t perform that action at this time.
0 commit comments