Closed chrised closed 3 years ago
Attempting to format a path with multiple parameters (e.g. /{parent_name}/{identifier}) causes an error response from format, since it will only succeed when it can apply to all format arguments in the string.
/{parent_name}/{identifier}
format
6b0d17b - 7331206+chrised@users.noreply.github.com
Python's String format method (format) does not allow for partial operation. Strings must be formatted with all required variables present.
Attempting to format a path with multiple parameters (e.g.
/{parent_name}/{identifier}
) causes an error response fromformat
, since it will only succeed when it can apply to all format arguments in the string.format path variables atomically
6b0d17b - 7331206+chrised@users.noreply.github.com
Python's String format method (
format
) does not allow for partial operation. Strings must be formatted with all required variables present.