robotcode-plugin 0.69.0__tar.gz → 0.71.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_plugin-0.69.0 → robotcode_plugin-0.71.0}/PKG-INFO +1 -1
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/__init__.py +1 -3
- robotcode_plugin-0.71.0/src/robotcode/plugin/__version__.py +1 -0
- robotcode_plugin-0.69.0/src/robotcode/plugin/__version__.py +0 -1
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/.gitignore +0 -0
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/LICENSE.txt +0 -0
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/README.md +0 -0
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/pyproject.toml +0 -0
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/click_helper/aliases.py +0 -0
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/click_helper/options.py +0 -0
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/click_helper/types.py +0 -0
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/manager.py +0 -0
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/py.typed +0 -0
- {robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/specs.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: robotcode-plugin
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.71.0
|
|
4
4
|
Summary: Some classes for RobotCode plugin management
|
|
5
5
|
Project-URL: Donate, https://github.com/sponsors/d-biehl
|
|
6
6
|
Project-URL: Documentation, https://github.com/d-biehl/robotcode#readme
|
|
@@ -142,9 +142,7 @@ class Application:
|
|
|
142
142
|
text = tomli_w.dumps(
|
|
143
143
|
as_dict(data, remove_defaults=remove_defaults)
|
|
144
144
|
if dataclasses.is_dataclass(data)
|
|
145
|
-
else data
|
|
146
|
-
if isinstance(data, dict)
|
|
147
|
-
else {data: data}
|
|
145
|
+
else data if isinstance(data, dict) else {data: data}
|
|
148
146
|
)
|
|
149
147
|
|
|
150
148
|
if text is None:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.71.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.69.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/click_helper/aliases.py
RENAMED
|
File without changes
|
{robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/click_helper/options.py
RENAMED
|
File without changes
|
{robotcode_plugin-0.69.0 → robotcode_plugin-0.71.0}/src/robotcode/plugin/click_helper/types.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|