Skip to content

Commit

Permalink
Fix type declarations for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed May 4, 2022
1 parent ca3bb36 commit b478fa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/idl/matter_idl_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class Cluster:
class AttributeInstantiation:
name: str
storage: AttributeStorage
default: Optional[Union[str | int | bool]] = None
default: Optional[Union[str, int, bool]] = None


@dataclass
Expand Down

0 comments on commit b478fa6

Please sign in to comment.