We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5c089d commit a497bb6Copy full SHA for a497bb6
src/structurizr/model/model_item.py
@@ -55,7 +55,7 @@ def split_tags(cls, tags: Union[str, List[str]]) -> List[str]:
55
def dict(self, **kwargs) -> dict:
56
""""""
57
obj = super().dict(**kwargs)
58
- if "tags" in obj and len(obj["tags"]) > 0:
+ if "tags" in obj:
59
obj["tags"] = ",".join(obj["tags"])
60
return obj
61
0 commit comments