Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
promans718 committed Oct 4, 2024
1 parent c946775 commit 93c6e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolium/utils/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def _update_param_transform_string(type_mapping_match_group):
elif type_mapping_match_group.group(1) == 'DATE':
params_to_replace = type_mapping_match_group.group(2).split('::')
date_actual_format = '%Y/%m/%d %H:%M:%S'
replace_param = _format_date_spanish(params_to_replace[0], params_to_replace[1], date_actual_format,
replace_param = _format_date_spanish(params_to_replace[0], params_to_replace[1], date_actual_format,
capitalize=False)
elif type_mapping_match_group.group(1) == 'TITLE':
replace_param = "".join(map(min, zip(type_mapping_match_group.group(2),
Expand Down

0 comments on commit 93c6e44

Please sign in to comment.