We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43239ec + d1eee08 commit 496a8c3Copy full SHA for 496a8c3
argilla/CHANGELOG.md
@@ -16,6 +16,8 @@ These are the section headers that we use:
16
17
## [Unreleased]()
18
19
+## [2.2.1](https://github.com/argilla-io/argilla/compare/v2.2.0...v2.2.1)
20
+
21
### Fixed
22
23
- Fixed `from_hub` errors when columns names contain uppercase letters. ([#5523](https://github.com/argilla-io/argilla/pull/5523))
argilla/src/argilla/settings/_io/_hub.py
@@ -85,7 +85,7 @@ def _map_feature_type(feature):
85
sub_feature = feature[0]
86
if _is_chat_feature(sub_feature):
87
return FeatureType.CHAT
88
- elif not isinstance(feature, dict):
+ if not isinstance(feature, dict):
89
warnings.warn(f"Unsupported feature format: {feature}")
90
return None
91
0 commit comments