Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix type of default value
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBurger authored and ccwienk committed Nov 30, 2020
1 parent 4fd6d60 commit 934123c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings-python/gci/componentmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ class ComponentReference(Artifact, FindLabelMixin):
name: str
componentName: str
version: str
extraIdentity: typing.Dict[str, str] = dataclasses.field(default_factory=tuple)
extraIdentity: typing.Dict[str, str] = dataclasses.field(default_factory=dict)
labels: typing.List[Label] = dataclasses.field(default_factory=tuple)


Expand Down

0 comments on commit 934123c

Please sign in to comment.