Skip to content

Commit

Permalink
Fix mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tmdvs committed Feb 29, 2024
1 parent f58d6e9 commit c6f28b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/converter/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ def base_layer(fig_node: dict) -> _BaseLayer:
return {
"do_objectID": utils.gen_object_id(fig_node["guid"]),
"name": fig_node["name"],
"booleanOperation": -1,
"booleanOperation": BooleanOperation.NONE,
"exportOptions": export_options(fig_node.get("exportSettings", [])),
**positioning.convert(fig_node), # type: ignore
"isFixedToViewport": False,
"isLocked": fig_node["locked"],
"isVisible": fig_node["visible"],
"layerListExpandedType": 0,
"layerListExpandedType": LayerListStatus.COLLAPSED,
"nameIsFixed": False,
"resizingConstraint": resizing_constraint(fig_node),
"resizingType": ResizeType.STRETCH,
Expand Down

0 comments on commit c6f28b5

Please sign in to comment.