From 1ee7ada8912f2c76f4a79daf84fc765c360c5923 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 7 Jan 2021 22:33:45 -0800 Subject: [PATCH] Fix trailing comma was creating a one-tuple for tag author jsonify. --- etiquette/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etiquette/objects.py b/etiquette/objects.py index b79c35e..854e0e5 100644 --- a/etiquette/objects.py +++ b/etiquette/objects.py @@ -1545,7 +1545,7 @@ class Tag(ObjectBase, GroupableMixin): 'name': self.name, } if not minimal: - j['author'] = self.get_author().jsonify() if self.author_id else None, + j['author'] = self.get_author().jsonify() if self.author_id else None j['description'] = self.description j['children'] = [child.jsonify(minimal=True) for child in self.get_children()]