Skip to content

Commit f585a97

Browse files
committed
ISSUE-1836: Address linting
1 parent 4b22343 commit f585a97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jira/client.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,8 @@ def copy_dashboard(
12841284
"description": description,
12851285
}
12861286
)
1287-
url = f"{self._get_url("dashboard")}/{id}/copy"
1287+
url = self._get_url("dashboard")
1288+
url = f"{url}/{id}/copy"
12881289
r = self._session.post(url, json=data)
12891290

12901291
raw_dashboard_json: dict[str, Any] = json_loads(r)

0 commit comments

Comments
 (0)