We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 702da78 commit 3f6e5f2Copy full SHA for 3f6e5f2
aries_cloudcontroller/api/settings.py
@@ -30,6 +30,8 @@ async def settings_put(
30
self, *, body: Optional[UpdateProfileSettings] = None
31
) -> ProfileSettings:
32
"""Update configurable settings associated with the profile."""
33
+ if not body:
34
+ body = UpdateProfileSettings()
35
return await self.__settings_put(
36
body=body,
37
)
0 commit comments