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 1
1
# Changelog
2
2
3
+ ## Version 0.10.5
4
+
5
+ - fix: ` self_workers ` in ` Store.__init__ ` -> local variable ` workers `
6
+
3
7
## Version 0.10.4
4
8
5
9
- chore: GitHub workflow to publish pushes on ` main ` branch to PyPI
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " python-redux"
3
- version = " 0.10.4 "
3
+ version = " 0.10.5 "
4
4
description = " Redux implementation for Python"
5
5
authors = [
" Sassan Haradji <[email protected] >" ]
6
6
license = " Apache-2.0"
Original file line number Diff line number Diff line change @@ -91,11 +91,11 @@ def __init__(
91
91
self ._event_handlers_queue = queue .Queue [
92
92
tuple [EventHandler [Event ], Event ] | None
93
93
]()
94
- self_workers = [
94
+ workers = [
95
95
_SideEffectRunnerThread (self ._event_handlers_queue )
96
96
for _ in range (self .store_options .threads )
97
97
]
98
- for worker in self_workers :
98
+ for worker in workers :
99
99
worker .start ()
100
100
101
101
self ._is_running = Lock ()
You can’t perform that action at this time.
0 commit comments