Merge pull request #3 from mikebirdgeneau/patch-1
MInor update in `remove` method of `Label`
This commit is contained in:
commit
5c5d03c309
1 changed files with 2 additions and 2 deletions
|
@ -578,7 +578,7 @@ class Label(Controller):
|
||||||
raise InvalidToken("Please provide a project, board, label name")
|
raise InvalidToken("Please provide a project, board, label name")
|
||||||
if card_id:
|
if card_id:
|
||||||
label_id = [label['id'] for label in Card(self.instance).get_labels(oid=card_id) if label['name'] == label_name][0]
|
label_id = [label['id'] for label in Card(self.instance).get_labels(oid=card_id) if label['name'] == label_name][0]
|
||||||
return super().delete(f"/api/cards/{card_id}/labels/{label['item']['id']}")
|
return super().delete(f"/api/cards/{card_id}/labels/{label_id}")
|
||||||
if not (card_name and list_name):
|
if not (card_name and list_name):
|
||||||
raise InvalidToken("Please provide a card and list name")
|
raise InvalidToken("Please provide a card and list name")
|
||||||
card_con = Card(self.instance)
|
card_con = Card(self.instance)
|
||||||
|
|
Loading…
Reference in a new issue