add websockets lib, bump version (#116)
* add websockets lib, bump version Signed-off-by: Jess Frazelle <github@jessfraz.com> * use template Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * I have generated the latest API! --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
@ -17,12 +17,16 @@ def _get_kwargs(
|
||||
*,
|
||||
client: Client,
|
||||
) -> Dict[str, Any]:
|
||||
url = "{}/file/volume".format(client.base_url) # noqa: E501
|
||||
url = "{}/file/volume".format(
|
||||
client.base_url,
|
||||
) # noqa: E501
|
||||
|
||||
if output_unit is not None:
|
||||
if "?" in url:
|
||||
url = url + "&output_unit=" + str(output_unit)
|
||||
else:
|
||||
url = url + "?output_unit=" + str(output_unit)
|
||||
|
||||
if src_format is not None:
|
||||
if "?" in url:
|
||||
url = url + "&src_format=" + str(src_format)
|
||||
|
Reference in New Issue
Block a user