Skip to content

Commit

Permalink
Post merge fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
atugushev committed Jul 25, 2023
1 parent 5b029cd commit f023694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piptools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ def _validate_config(
# Validate value against types of all associated params
for param in associated_params:
try:
param.type.convert(value=value, param=param, ctx=click_context)
param.type_cast_value(value=value, ctx=click_context)
except Exception as e:
raise click.BadOptionUsage(
option_name=key,
Expand Down

0 comments on commit f023694

Please sign in to comment.