Skip to content

Commit 4c345bb

Browse files
committed
Serialize tags as list
1 parent 4f11391 commit 4c345bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tasklib/serializing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def deserialize_annotations(self, data):
173173
return [TaskAnnotation(self, d) for d in data] if data else []
174174

175175
def serialize_tags(self, tags):
176-
return ','.join(tags) if tags else ''
176+
return list(tags)
177177

178178
def deserialize_tags(self, tags):
179179
if isinstance(tags, str):

0 commit comments

Comments
 (0)