Skip to content

Commit 496a8c3

Browse files
committed
Merge branch 'main' into develop
2 parents 43239ec + d1eee08 commit 496a8c3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

argilla/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ These are the section headers that we use:
1616

1717
## [Unreleased]()
1818

19+
## [2.2.1](https://github.com/argilla-io/argilla/compare/v2.2.0...v2.2.1)
20+
1921
### Fixed
2022

2123
- 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def _map_feature_type(feature):
8585
sub_feature = feature[0]
8686
if _is_chat_feature(sub_feature):
8787
return FeatureType.CHAT
88-
elif not isinstance(feature, dict):
88+
if not isinstance(feature, dict):
8989
warnings.warn(f"Unsupported feature format: {feature}")
9090
return None
9191

0 commit comments

Comments
 (0)