From b6f9afa12f4ee9fc89b704bd38bd4215155f425b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20J=2E=20Romero=20L=C3=B3pez?= Date: Sun, 9 Oct 2016 12:30:03 +0200 Subject: [PATCH] Saves a new Trello board. Avoid creating default lists. --- trello/board.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trello/board.py b/trello/board.py index 900e4530..a544d75d 100644 --- a/trello/board.py +++ b/trello/board.py @@ -88,7 +88,7 @@ def save(self): json_obj = self.client.fetch_json( '/boards/', http_method='POST', - post_args={'name': self.name, "desc": self.description}, ) + post_args={'name': self.name, "desc": self.description, "defaultLists": False}, ) # Set initial data from Trello self.from_json(json_obj=json_obj) self.id = json_obj["id"]