Skip to content

Commit ae1d898

Browse files
mjnoviceclaude
andcommitted
fix: format memory service and bump version to 0.1.38
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ca10a2f commit ae1d898

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

packages/uipath-platform/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-platform"
3-
version = "0.1.37"
3+
version = "0.1.38"
44
description = "HTTP client library for programmatic access to UiPath Platform"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

packages/uipath-platform/src/uipath/platform/memory/_memory_service.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ def create(
7373
Returns:
7474
MemorySpace: The created memory space.
7575
"""
76-
spec = self._create_spec(name, description, is_encrypted, folder_key, folder_path)
76+
spec = self._create_spec(
77+
name, description, is_encrypted, folder_key, folder_path
78+
)
7779
response = self.request(
7880
spec.method,
7981
spec.endpoint,
@@ -104,7 +106,9 @@ async def create_async(
104106
Returns:
105107
MemorySpace: The created memory space.
106108
"""
107-
spec = self._create_spec(name, description, is_encrypted, folder_key, folder_path)
109+
spec = self._create_spec(
110+
name, description, is_encrypted, folder_key, folder_path
111+
)
108112
response = (
109113
await self.request_async(
110114
spec.method,

packages/uipath-platform/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)