Skip to content

Commit

Permalink
tests typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matveyvarg committed Apr 17, 2024
1 parent 2af0761 commit 98b2272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deker/tools/attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def deserialize_attribute_nested_tuples(value: Tuple[Any, ...]) -> Tuple[Any, ..
def make_ordered_dict(
primary_attributes: Optional[dict],
custom_attributes: Optional[dict],
attrs_schema: Union[List["AttributeSchema"], Tuple[AttributeSchema, ...]],
attrs_schema: Union[List["AttributeSchema"], Tuple["AttributeSchema", ...]],
) -> Tuple[OrderedDict, OrderedDict]:
"""Ensure that attributes in dict are located in correct order (Based on schema).
Expand Down

0 comments on commit 98b2272

Please sign in to comment.