We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 069e758 commit bc1d76aCopy full SHA for bc1d76a
1 file changed
maas/client/bones/__init__.py
@@ -301,7 +301,7 @@ async def __call__(self, **data):
301
del data[key]
302
for nested_key, nested_value in value.items():
303
data[key + "_" + nested_key] = nested_value
304
- for key, value in data.items():
+ for key, value in data.copy().items():
305
if key.startswith("_"):
306
data[key[1:]] = data.pop(key)
307
response = await self.bind(**params).call(**data)
0 commit comments