python-redux 0.21.0__tar.gz → 0.21.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. {python_redux-0.21.0 → python_redux-0.21.1}/PKG-INFO +1 -1
  2. {python_redux-0.21.0 → python_redux-0.21.1}/redux/_version.py +2 -2
  3. {python_redux-0.21.0 → python_redux-0.21.1}/redux/with_state.py +1 -1
  4. {python_redux-0.21.0 → python_redux-0.21.1}/.gitignore +0 -0
  5. {python_redux-0.21.0 → python_redux-0.21.1}/LICENSE +0 -0
  6. {python_redux-0.21.0 → python_redux-0.21.1}/README.md +0 -0
  7. {python_redux-0.21.0 → python_redux-0.21.1}/pyproject.toml +0 -0
  8. {python_redux-0.21.0 → python_redux-0.21.1}/redux/__init__.py +0 -0
  9. {python_redux-0.21.0 → python_redux-0.21.1}/redux/autorun.py +0 -0
  10. {python_redux-0.21.0 → python_redux-0.21.1}/redux/basic_types.py +0 -0
  11. {python_redux-0.21.0 → python_redux-0.21.1}/redux/combine_reducers.py +0 -0
  12. {python_redux-0.21.0 → python_redux-0.21.1}/redux/main.py +0 -0
  13. {python_redux-0.21.0 → python_redux-0.21.1}/redux/py.typed +0 -0
  14. {python_redux-0.21.0 → python_redux-0.21.1}/redux/serialization_mixin.py +0 -0
  15. {python_redux-0.21.0 → python_redux-0.21.1}/redux/side_effect_runner.py +0 -0
  16. {python_redux-0.21.0 → python_redux-0.21.1}/redux_pytest/__init__.py +0 -0
  17. {python_redux-0.21.0 → python_redux-0.21.1}/redux_pytest/fixtures/__init__.py +0 -0
  18. {python_redux-0.21.0 → python_redux-0.21.1}/redux_pytest/fixtures/event_loop.py +0 -0
  19. {python_redux-0.21.0 → python_redux-0.21.1}/redux_pytest/fixtures/monitor.py +0 -0
  20. {python_redux-0.21.0 → python_redux-0.21.1}/redux_pytest/fixtures/snapshot.py +0 -0
  21. {python_redux-0.21.0 → python_redux-0.21.1}/redux_pytest/fixtures/store.py +0 -0
  22. {python_redux-0.21.0 → python_redux-0.21.1}/redux_pytest/fixtures/wait_for.py +0 -0
  23. {python_redux-0.21.0 → python_redux-0.21.1}/redux_pytest/plugin.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-redux
3
- Version: 0.21.0
3
+ Version: 0.21.1
4
4
  Summary: Redux implementation for Python
5
5
  Project-URL: homepage, https://github.com/sassanh/python-redux/
6
6
  Project-URL: repository, https://github.com/sassanh/python-redux/
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.21.0'
21
- __version_tuple__ = version_tuple = (0, 21, 0)
20
+ __version__ = version = '0.21.1'
21
+ __version_tuple__ = version_tuple = (0, 21, 1)
@@ -31,7 +31,7 @@ class WithState(Generic[State, Action, Event, SelectorOutput, ReturnType, Args])
31
31
  self._selector = selector
32
32
  self._func = func
33
33
  signature = inspect.signature(func)
34
- parameters = list(signature.parameters.values())[1:] # Skip the first parameter
34
+ parameters = list(signature.parameters.values())
35
35
  if parameters and parameters[0].kind in [
36
36
  inspect.Parameter.POSITIONAL_ONLY,
37
37
  inspect.Parameter.POSITIONAL_OR_KEYWORD,
File without changes
File without changes
File without changes