Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
evelyn-ys committed Nov 19, 2024
commit d6d5be7fc8b9377b330d9482d751cbdb313835e4
2 changes: 1 addition & 1 deletion src/azure-cli-core/azure/cli/core/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def _run_job(self, expanded_arg, cmd_copy):

# This is added for new models from typespec generated SDKs
# These models store data in `__dict__['_data']` instead of in `__dict__`
if result and hasattr(result, 'as_dict') and not hasattr(obj, '_attribute_map'):
if result and hasattr(result, 'as_dict') and not hasattr(result, '_attribute_map'):
result = _convert_camel_case(result.as_dict())
result = todict(result, AzCliCommandInvoker.remove_additional_prop_layer)

Expand Down