haiway 0.23.0__py3-none-any.whl → 0.23.1__py3-none-any.whl
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.
- haiway/context/state.py +1 -1
- {haiway-0.23.0.dist-info → haiway-0.23.1.dist-info}/METADATA +1 -1
- {haiway-0.23.0.dist-info → haiway-0.23.1.dist-info}/RECORD +5 -5
- {haiway-0.23.0.dist-info → haiway-0.23.1.dist-info}/WHEEL +0 -0
- {haiway-0.23.0.dist-info → haiway-0.23.1.dist-info}/licenses/LICENSE +0 -0
haiway/context/state.py
CHANGED
@@ -37,7 +37,7 @@ class ScopeState:
|
|
37
37
|
"_state",
|
38
38
|
{type(element): element for element in state},
|
39
39
|
)
|
40
|
-
assert all(
|
40
|
+
assert all(isinstance(value, State) for value in self._state.values()) # nosec: B101
|
41
41
|
self._lock: Lock
|
42
42
|
object.__setattr__(
|
43
43
|
self,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: haiway
|
3
|
-
Version: 0.23.
|
3
|
+
Version: 0.23.1
|
4
4
|
Summary: Framework for dependency injection and state management within structured concurrency model.
|
5
5
|
Project-URL: Homepage, https://miquido.com
|
6
6
|
Project-URL: Repository, https://github.com/miquido/haiway.git
|
@@ -5,7 +5,7 @@ haiway/context/access.py,sha256=QCabyZtqqJjGTgAod1ZC3Fz3IfPsyurLo_i68RnCm4Q,2573
|
|
5
5
|
haiway/context/disposables.py,sha256=AP9eZ0BPHJZfjrrfrjSzr4jONMKkR6YmhjOfnBp37so,11504
|
6
6
|
haiway/context/identifier.py,sha256=dCCwLneXJzH__ZWFlGRUHvoCmbT4lM0QVbyokYIbUHg,5255
|
7
7
|
haiway/context/observability.py,sha256=E-TDqqJ_EnHkFTspEjyA61O0iIbEev15YUn5d3yHhvU,23692
|
8
|
-
haiway/context/state.py,sha256=
|
8
|
+
haiway/context/state.py,sha256=2r65MNI8kCTVpRJDX9ghkER2Cevdz1UbsH_J8u8VA_E,12006
|
9
9
|
haiway/context/tasks.py,sha256=pScFgeiyrXSJRDFZiYbBLi3k_DHkSlhB8rgAnYtgyrU,4925
|
10
10
|
haiway/context/types.py,sha256=VDWXJySihfvSSPzY09PaGk6j5S9HgmAUboBGCZ8o_4k,766
|
11
11
|
haiway/helpers/__init__.py,sha256=PTWpavAveEB2V9Au1QuaRZwh3Rkb1bQSNvo_mxuGqlE,721
|
@@ -39,7 +39,7 @@ haiway/utils/mimic.py,sha256=xaZiUKp096QFfdSw7cNIKEWt2UIS7vf880KF54gny38,1831
|
|
39
39
|
haiway/utils/noop.py,sha256=U8ocfoCgt-pY0owJDPtrRrj53cabeIXH9qCKWMQnoRk,1336
|
40
40
|
haiway/utils/queue.py,sha256=6v2u3pA6A44IuCCTOjmCt3yLyOcm7PCRnrIGo25j-1o,6402
|
41
41
|
haiway/utils/stream.py,sha256=lXaeveTY0-AYG5xVzcQYaiC6SUD5fUtHoMXiQcrQAAM,5723
|
42
|
-
haiway-0.23.
|
43
|
-
haiway-0.23.
|
44
|
-
haiway-0.23.
|
45
|
-
haiway-0.23.
|
42
|
+
haiway-0.23.1.dist-info/METADATA,sha256=q3Hwy9YcAJkImsd5L4I_WeVjJettQeeGD4A92Zma4BI,4919
|
43
|
+
haiway-0.23.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
44
|
+
haiway-0.23.1.dist-info/licenses/LICENSE,sha256=3phcpHVNBP8jsi77gOO0E7rgKeDeu99Pi7DSnK9YHoQ,1069
|
45
|
+
haiway-0.23.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|