soia-client 1.0.3__tar.gz → 1.0.4__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.

Potentially problematic release.


This version of soia-client might be problematic. Click here for more details.

Files changed (28) hide show
  1. {soia_client-1.0.3 → soia_client-1.0.4}/PKG-INFO +1 -1
  2. {soia_client-1.0.3 → soia_client-1.0.4}/pyproject.toml +1 -1
  3. {soia_client-1.0.3 → soia_client-1.0.4}/soia_client.egg-info/PKG-INFO +1 -1
  4. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/module_initializer.py +1 -1
  5. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/spec.py +1 -1
  6. {soia_client-1.0.3 → soia_client-1.0.4}/LICENSE +0 -0
  7. {soia_client-1.0.3 → soia_client-1.0.4}/README +0 -0
  8. {soia_client-1.0.3 → soia_client-1.0.4}/setup.cfg +0 -0
  9. {soia_client-1.0.3 → soia_client-1.0.4}/soia_client.egg-info/SOURCES.txt +0 -0
  10. {soia_client-1.0.3 → soia_client-1.0.4}/soia_client.egg-info/dependency_links.txt +0 -0
  11. {soia_client-1.0.3 → soia_client-1.0.4}/soia_client.egg-info/top_level.txt +0 -0
  12. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/__init__.py +0 -0
  13. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/__init__.py +0 -0
  14. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/arrays.py +0 -0
  15. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/encoding.py +0 -0
  16. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/enums.py +0 -0
  17. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/function_maker.py +0 -0
  18. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/optionals.py +0 -0
  19. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/primitives.py +0 -0
  20. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/repr.py +0 -0
  21. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/structs.py +0 -0
  22. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/impl/type_adapter.py +0 -0
  23. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/keyed_items.py +0 -0
  24. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/never.py +0 -0
  25. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/serializer.py +0 -0
  26. {soia_client-1.0.3 → soia_client-1.0.4}/soialib/timestamp.py +0 -0
  27. {soia_client-1.0.3 → soia_client-1.0.4}/tests/test_module_initializer.py +0 -0
  28. {soia_client-1.0.3 → soia_client-1.0.4}/tests/test_timestamp.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: soia-client
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Author-email: Tyler Fibonacci <gepheum@gmail.com>
5
5
  License: MIT License
6
6
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "soia-client"
7
- version = "1.0.3"
7
+ version = "1.0.4"
8
8
  description = ""
9
9
  readme = "README.md"
10
10
  authors = [{ name = "Tyler Fibonacci", email = "gepheum@gmail.com" }]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: soia-client
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Author-email: Tyler Fibonacci <gepheum@gmail.com>
5
5
  License: MIT License
6
6
 
@@ -43,7 +43,7 @@ def init_module_classes(
43
43
  type.key_attributes,
44
44
  )
45
45
  elif isinstance(type, spec.OptionalType):
46
- return optionals.get_optional_adapter(resolve_type(type.value))
46
+ return optionals.get_optional_adapter(resolve_type(type.other))
47
47
  elif isinstance(type, str):
48
48
  # A record id.
49
49
  return record_id_to_adapter[type]
@@ -24,7 +24,7 @@ class ArrayType:
24
24
 
25
25
  @dataclass(frozen=True)
26
26
  class OptionalType:
27
- value: "Type"
27
+ other: "Type"
28
28
 
29
29
 
30
30
  # TODO: comment
File without changes
File without changes
File without changes