robotcode-core 0.102.0__tar.gz → 0.103.0__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.
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/PKG-INFO +3 -2
- robotcode_core-0.103.0/src/robotcode/core/__version__.py +1 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/dataclasses.py +4 -1
- robotcode_core-0.102.0/src/robotcode/core/__version__.py +0 -1
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/.gitignore +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/LICENSE.txt +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/README.md +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/pyproject.toml +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/__init__.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/async_tools.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/concurrent.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/documents_manager.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/event.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/filewatcher.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/ignore_spec.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/language.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/lsp/__init__.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/lsp/types.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/py.typed +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/text_document.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/types.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/uri.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/__init__.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/caching.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/cli.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/debugpy.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/glob_path.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/inspect.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/logging.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/net.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/path.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/process.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/safe_eval.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/utils/version.py +0 -0
- {robotcode_core-0.102.0 → robotcode_core-0.103.0}/src/robotcode/core/workspace.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: robotcode-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.103.0
|
|
4
4
|
Summary: Some core classes for RobotCode
|
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
|
@@ -10,6 +10,7 @@ Project-URL: Issues, https://github.com/robotcodedev/robotcode/issues
|
|
|
10
10
|
Project-URL: Source, https://github.com/robotcodedev/robotcode
|
|
11
11
|
Author-email: Daniel Biehl <dbiehl@live.de>
|
|
12
12
|
License: Apache-2.0
|
|
13
|
+
License-File: LICENSE.txt
|
|
13
14
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
15
|
Classifier: Framework :: Robot Framework
|
|
15
16
|
Classifier: Framework :: Robot Framework :: Tool
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.103.0"
|
|
@@ -419,6 +419,9 @@ def from_dict(
|
|
|
419
419
|
match_type_hints: Optional[Dict[str, Any]] = None
|
|
420
420
|
|
|
421
421
|
for t in types:
|
|
422
|
+
if t is type(None):
|
|
423
|
+
continue
|
|
424
|
+
|
|
422
425
|
origin = _get_origin_cached(t)
|
|
423
426
|
|
|
424
427
|
if origin is Literal:
|
|
@@ -455,7 +458,7 @@ def from_dict(
|
|
|
455
458
|
match_type_hints = type_hints
|
|
456
459
|
elif match_same_keys is not None and len(match_same_keys) == len(same_keys):
|
|
457
460
|
raise TypeError(
|
|
458
|
-
f"Value {value!r} matches to more then one types of "
|
|
461
|
+
f"Value {value!r} of type {type(value)!r} matches to more then one types of "
|
|
459
462
|
f"{repr(types[0].__name__) if len(types) == 1 else ' | '.join(repr(e.__name__) for e in types)}."
|
|
460
463
|
)
|
|
461
464
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.102.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|