Skip to content

Commit

Permalink
Make '_strip' function return as list not set. (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski authored and nabobalis committed May 2, 2024
1 parent 2e3ac8d commit 2c3e858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ablog/post.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@


def _split(a):
return {s.strip() for s in (a or "").split(",")}
return [s.strip() for s in (a or "").split(",")]


class PostNode(nodes.Element):
Expand Down

0 comments on commit 2c3e858

Please sign in to comment.