wmill 1.609.0__tar.gz → 1.613.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of wmill might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wmill
3
- Version: 1.609.0
3
+ Version: 1.613.0
4
4
  Summary: A client library for accessing Windmill server wrapping the Windmill client API
5
5
  Home-page: https://windmill.dev
6
6
  License: Apache-2.0
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "wmill"
3
- version = "1.609.0"
3
+ version = "1.613.0"
4
4
  description = "A client library for accessing Windmill server wrapping the Windmill client API"
5
5
  license = "Apache-2.0"
6
6
  homepage = "https://windmill.dev"
@@ -975,7 +975,7 @@ class Windmill:
975
975
  ).json()
976
976
  except Exception as e:
977
977
  raise Exception("Could not write file to S3") from e
978
- return S3Object(s3=response["file_key"], storage=s3object["storage"])
978
+ return S3Object(s3=response["file_key"], storage=s3object.get("storage") if s3object else None)
979
979
 
980
980
  def sign_s3_objects(self, s3_objects: list[S3Object | str]) -> list[S3Object]:
981
981
  """Sign S3 objects for use by anonymous users in public apps.
File without changes
File without changes
File without changes
File without changes
File without changes