From 08d4acb87f823a22348ff1af4e29a0a103104137 Mon Sep 17 00:00:00 2001 From: gkowalc <> Date: Tue, 19 Mar 2024 23:05:39 +0100 Subject: [PATCH] fix flake8 issue --- examples/jira/jira_get_issue_tree_recursive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/jira/jira_get_issue_tree_recursive.py b/examples/jira/jira_get_issue_tree_recursive.py index 2d2c8dd34..b8a971afa 100644 --- a/examples/jira/jira_get_issue_tree_recursive.py +++ b/examples/jira/jira_get_issue_tree_recursive.py @@ -11,8 +11,8 @@ Return list that contains the tree of the issue, with all subtasks and inward linked issues. be aware of following limitations: (!) Function only returns child issues from the same jira instance or from instance to which api key has access to. - (!) User asssociated with API key must have access to the all child issues in order to get them. - """ + (!) User asssociated with API key must have access to the all child issues in order to get them. +""" """ Let's say we have a tree of issues: INTEGRTEST-2 is the root issue and it has 1 subtask from project TEST - TEST1