Skip to content

Commit

Permalink
update changelog in #389 and minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-VM committed Feb 12, 2025
1 parent e4a6a9e commit ad66d43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Code contributions to the release:
- Added a more robust datatype handling in utils.py read_csv_file_return_dict() method [#379](https://github.com/BU-ISCIII/relecov-tools/pull/379)
- Improved relecov template generator and version control [#382](https://github.com/BU-ISCIII/relecov-tools/pull/382)
- Improve "options" interpretation in build-schema and update read-lab-metadata field type [#388](https://github.com/BU-ISCIII/relecov-tools/pull/388)
- Enhance validation of database definitinon values [#389](https://github.com/BU-ISCIII/relecov-tools/pull/389)

#### Fixes

Expand Down
3 changes: 1 addition & 2 deletions relecov_tools/build_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,7 @@ def validate_database_definition(self, json_data):

# Check date format for properties with type=string and format=date
if (
"type" in prop_features
and prop_features["type"] == "string"
prop_features["type"] == "string"
and prop_features.get("format") == "date"
):
example = prop_features.get("examples")
Expand Down

0 comments on commit ad66d43

Please sign in to comment.