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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotcode-plugin
3
- Version: 0.69.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"