Skip to content

Commit 3ca8e24

Browse files
committed
fix more lint errors
1 parent 2c0b696 commit 3ca8e24

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/staging-push.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ jobs:
4848
# run: python ./__main__.py --report-type test-run-counts --project fenix --start-date 2021-08-15 --end-date 2021-10-01
4949

5050
- name: Update DB - test coverage
51-
#run: python ./__main__.py --report-type test-case-coverage --project ALL
51+
run: python ./__main__.py --report-type test-case-coverage --project ALL
52+
- name: Jira query
5253
run: python ./__main__.py --report-type jira
5354
- name: Set job log URL
5455
if: always()

lib/jira_conn.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def get_search(self, query):
2424
"""Issue a GET request (read) against the API.
2525
2626
Args:
27-
filter{id}: The API method to call including parameters,
27+
filter{id}: The API method to call including parameters,
2828
e.g. GET /rest/api/2/filter/{id}.
2929
3030
Returns:
@@ -47,9 +47,10 @@ def __send_request(self, method, query):
4747

4848
while start_at < total:
4949
# Send GET request
50-
response = requests.get(url, \
51-
headers=headers, \
52-
auth=HTTPBasicAuth(self.user, self.password))
50+
response = requests.get(
51+
url,
52+
headers=headers,
53+
auth=HTTPBasicAuth(self.user, self.password))
5354

5455
if response.status_code == 200:
5556
data = response.json()

0 commit comments

Comments
 (0)