Skip to content

Commit

Permalink
Removed Board.open() and List.open() for the pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
larssorenson committed May 3, 2015
1 parent 9447329 commit 016dcc1
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions trello/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,13 +355,6 @@ def close(self):
post_args={'value': 'true', }, )
self.closed = True

def open(self):
self.client.fetch_json(
'/boards/' + self.id + '/closed',
http_method='PUT',
post_args={'value': 'false', }, )
self.closed = False

def get_list(self, list_id):
obj = self.client.fetch_json('/lists/' + list_id)
return List.from_json(board=self, json_obj=obj)
Expand Down Expand Up @@ -585,13 +578,6 @@ def close(self):
post_args={'value': 'true', }, )
self.closed = True

def open(self):
self.client.fetch_json(
'/lists/' + self.id + '/closed',
http_method='PUT',
post_args={'value': 'false', }, )
self.closed = False

def cardsCnt(self):
return len(self.list_cards())

Expand Down

0 comments on commit 016dcc1

Please sign in to comment.