File diff suppressed because one or more lines are too long
@ -26,7 +26,7 @@ def sync(
|
|||||||
|
|
||||||
if isinstance(fc, FileConversion) and fc.output != "":
|
if isinstance(fc, FileConversion) and fc.output != "":
|
||||||
if isinstance(fc.output, str):
|
if isinstance(fc.output, str):
|
||||||
b = base64.b64decode(fc.output, validate=False)
|
b = base64.b64decode(fc.output + "===")
|
||||||
return (fc, b)
|
return (fc, b)
|
||||||
|
|
||||||
return fc
|
return fc
|
||||||
@ -52,7 +52,7 @@ async def asyncio(
|
|||||||
|
|
||||||
if isinstance(fc, FileConversion) and fc.output != "":
|
if isinstance(fc, FileConversion) and fc.output != "":
|
||||||
if isinstance(fc.output, str):
|
if isinstance(fc.output, str):
|
||||||
b = base64.b64decode(fc.output, validate=False)
|
b = base64.b64decode(fc.output + "===")
|
||||||
return (fc, b)
|
return (fc, b)
|
||||||
|
|
||||||
return fc
|
return fc
|
||||||
|
@ -21,7 +21,7 @@ def sync(
|
|||||||
|
|
||||||
if isinstance(fc, FileConversion) and fc.output != "":
|
if isinstance(fc, FileConversion) and fc.output != "":
|
||||||
if isinstance(fc.output, str):
|
if isinstance(fc.output, str):
|
||||||
b = base64.b64decode(fc.output, validate=False)
|
b = base64.b64decode(fc.output + "===")
|
||||||
return (fc, b)
|
return (fc, b)
|
||||||
|
|
||||||
return fc
|
return fc
|
||||||
@ -41,7 +41,7 @@ async def asyncio(
|
|||||||
|
|
||||||
if isinstance(fc, FileConversion) and fc.output != "":
|
if isinstance(fc, FileConversion) and fc.output != "":
|
||||||
if isinstance(fc.output, str):
|
if isinstance(fc.output, str):
|
||||||
b = base64.b64decode(fc.output, validate=False)
|
b = base64.b64decode(fc.output + "===")
|
||||||
return (fc, b)
|
return (fc, b)
|
||||||
|
|
||||||
return fc
|
return fc
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "kittycad"
|
name = "kittycad"
|
||||||
version = "0.4.9"
|
version = "0.4.8"
|
||||||
description = "A client library for accessing KittyCAD"
|
description = "A client library for accessing KittyCAD"
|
||||||
|
|
||||||
authors = []
|
authors = []
|
||||||
|
Reference in New Issue
Block a user