Skip to content

Commit

Permalink
Small fix from mypy change (#2244)
Browse files Browse the repository at this point in the history
Signed-off-by: Kristen Armes <[email protected]>
  • Loading branch information
kristenarmes authored Apr 5, 2024
1 parent 164b956 commit e8a4cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/amundsen_application/api/utils/metadata_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def is_table_editable(schema_name: str, table_name: str, cfg: Any = None) -> boo
def _recursive_set_type_metadata_is_editable(type_metadata: Optional[TypeMetadata], is_editable: bool) -> None:
if type_metadata is not None:
type_metadata['is_editable'] = is_editable
for tm in getattr(type_metadata, 'children'):
for tm in getattr(type_metadata, 'children', []):
_recursive_set_type_metadata_is_editable(tm, is_editable)


Expand Down

0 comments on commit e8a4cc3

Please sign in to comment.