Skip to content

Commit

Permalink
Fixes the issue in EndpointExceptionError by changing the format of t…
Browse files Browse the repository at this point in the history
…he error message
  • Loading branch information
Ujjwal Baskota committed Nov 5, 2024
1 parent c05bbb3 commit d89d6e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion botocore/endpoint_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ def process_input(self, value):
return self.default
if self.required:
raise EndpointResolutionError(
f"Cannot find value for required parameter {self.name}"
msg=f"Cannot find value for required parameter {self.name}"
)
# in all other cases, the parameter will keep the value None
else:
Expand Down

0 comments on commit d89d6e9

Please sign in to comment.