Skip to content

Commit 229529f

Browse files
author
Gonchik Tsymzhitov
committed
flake8 fix all warnings except E501
1 parent 2a1a581 commit 229529f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/jira/jira_permission_browse_and_work_on_issue_normalizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from atlassian import Jira
33

44
"""
5-
That example use for normalizing the permission schemes between
5+
That example use for normalizing the permission schemes between
66
BROWSE_PROJECTS and WORK_ON_ISSUES parameters
77
"""
88

tests/mockup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def request_mockup(*args, **kwargs):
1919
url = kwargs["url"]
2020
if not url.startswith(SERVER + "/"):
2121
raise ValueError("URL [{}] does not start with [{}/].".format(url, SERVER))
22-
parts = url[len(SERVER) + 1 :].split("?")
22+
parts = url[len(SERVER) + 1:].split("?")
2323
url = parts[0]
2424
response_key = parts[1] if len(parts) > 1 else None
2525
if kwargs["data"] is not None:

0 commit comments

Comments
 (0)