Skip to content

Commit

Permalink
Whitespace symmetry
Browse files Browse the repository at this point in the history
  • Loading branch information
aazuspan committed Jan 21, 2025
1 parent 1be7082 commit 7fd9f61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eerepr/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ def dict_to_html(obj: dict, key: Hashable | None = None) -> str:
sorted_keys = [k for k in PROPERTY_PRIORITY if k in obj] + sorted(
[k for k in obj if k not in PROPERTY_PRIORITY]
)
children = [convert_to_html(obj[key], key=key) for key in sorted_keys]

children = [convert_to_html(obj[key], key=key) for key in sorted_keys]
return _make_collapsible_li(header, children)


Expand Down

0 comments on commit 7fd9f61

Please sign in to comment.