Skip to content

Commit 5ab8c67

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7a0bc8e commit 5ab8c67

9 files changed

+12
-3
lines changed

examples/auth.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Some simple authentication examples."""
2+
23
from __future__ import annotations
34

45
from collections import Counter

jira/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""The root of JIRA package namespace."""
2+
23
from __future__ import annotations
34

45
try:

jira/client.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
will construct a JIRA object as described below. Full API documentation can be found
66
at: https://jira.readthedocs.io/en/latest/.
77
"""
8+
89
from __future__ import annotations
910

1011
import calendar
@@ -4092,9 +4093,9 @@ def deactivate_user(self, username: str) -> str | int:
40924093
raise JIRAError(f"Error Deactivating {username}: {e}")
40934094
else:
40944095
url = self.server_url + "/secure/admin/user/EditUser.jspa"
4095-
self._options["headers"][
4096-
"Content-Type"
4097-
] = "application/x-www-form-urlencoded; charset=UTF-8"
4096+
self._options["headers"]["Content-Type"] = (
4097+
"application/x-www-form-urlencoded; charset=UTF-8"
4098+
)
40984099
user = self.user(username)
40994100
userInfo = {
41004101
"inline": "true",

jira/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
66
Also, this simplifies the scripts by not having to write the same initialization code for each script.
77
"""
8+
89
from __future__ import annotations
910

1011
import configparser

jira/jirashell.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Script arguments support changing the server and a persistent authentication
44
over HTTP BASIC or Kerberos.
55
"""
6+
67
from __future__ import annotations
78

89
import argparse

jira/resources.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
This module implements the Resource classes that translate JSON from Jira REST
44
resources into usable objects.
55
"""
6+
67
from __future__ import annotations
78

89
import json

jira/utils/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Jira utils used internally."""
2+
23
from __future__ import annotations
34

45
import threading

make_local_jira_user.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Attempts to create a test user, as the empty JIRA instance isn't provisioned with one."""
2+
23
from __future__ import annotations
34

45
import sys

tests/tests.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
resources/test_* : For tests related to resources
99
test_* : For other tests of the non-resource elements of the jira package.
1010
"""
11+
1112
from __future__ import annotations
1213

1314
import logging

0 commit comments

Comments
 (0)