robotcode-core 0.83.2__tar.gz → 0.83.3__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.83.2 → robotcode_core-0.83.3}/PKG-INFO +1 -1
- robotcode_core-0.83.3/src/robotcode/core/__version__.py +1 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/dataclasses.py +2 -2
- robotcode_core-0.83.2/src/robotcode/core/__version__.py +0 -1
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/.gitignore +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/LICENSE.txt +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/README.md +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/pyproject.toml +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/__init__.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/async_tools.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/concurrent.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/documents_manager.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/event.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/filewatcher.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/language.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/lsp/__init__.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/lsp/types.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/py.typed +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/text_document.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/types.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/uri.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/__init__.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/caching.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/cli.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/debugpy.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/glob_path.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/inspect.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/logging.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/net.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/path.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/process.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/safe_eval.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/utils/version.py +0 -0
- {robotcode_core-0.83.2 → robotcode_core-0.83.3}/src/robotcode/core/workspace.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.83.3"
|
|
@@ -314,7 +314,7 @@ def __from_dict_handle_basic_types(value: Any, t: Type[Any], strict: bool) -> Tu
|
|
|
314
314
|
|
|
315
315
|
|
|
316
316
|
def __from_dict_handle_sequence(value: Any, t: Type[Any], strict: bool) -> Tuple[Any, bool]:
|
|
317
|
-
if isinstance(value, Sequence):
|
|
317
|
+
if isinstance(value, Sequence) and not isinstance(value, str):
|
|
318
318
|
args = _get_args_cached(t)
|
|
319
319
|
return (_get_origin_cached(t) or t)(from_dict(v, args, strict=strict) for v in value), True
|
|
320
320
|
return None, False
|
|
@@ -471,7 +471,7 @@ def from_dict(
|
|
|
471
471
|
try:
|
|
472
472
|
return match_(**params)
|
|
473
473
|
except TypeError as ex:
|
|
474
|
-
raise TypeError(f"Can't initialize
|
|
474
|
+
raise TypeError(f"Can't initialize {match_!r} with parameters {params!r}: {ex}") from ex
|
|
475
475
|
|
|
476
476
|
raise TypeError(
|
|
477
477
|
"Value must be of type `"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.83.2"
|
|
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
|