Skip to content

Commit 95d2a08

Browse files
committed
f-stringify part 2
1 parent 730f79e commit 95d2a08

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

atlassian/jira.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5016,9 +5016,7 @@ def set_agile_board_property(self, board_id, property_key):
50165016
:param property_key:
50175017
:return:
50185018
"""
5019-
url = "/rest/agile/1.0/board/{boardId}/properties/{propertyKey}".format(
5020-
boardId=board_id, propertyKey=property_key
5021-
)
5019+
url = f"/rest/agile/1.0/board/{board_id}/properties/{property_key}"
50225020
return self.put(url)
50235021

50245022
def get_agile_board_property(self, board_id, property_key):

0 commit comments

Comments
 (0)