File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 6
6
import re
7
7
import time
8
8
9
+ import requests
9
10
from bs4 import BeautifulSoup
10
11
from deprecated import deprecated
11
- import requests
12
12
from requests import HTTPError
13
13
14
14
from atlassian import utils
15
+
15
16
from .errors import (
16
17
ApiConflictError ,
17
18
ApiError ,
Original file line number Diff line number Diff line change 1
1
# coding=utf-8
2
2
import logging
3
3
import random
4
+ import time
5
+ from http .cookiejar import CookieJar
4
6
from json import dumps
5
7
from typing import (
6
8
List ,
12
14
)
13
15
14
16
import requests
17
+ import urllib3
15
18
from requests .adapters import HTTPAdapter
16
19
from typing_extensions import Literal
17
20
21
24
from oauthlib .oauth1 .rfc5849 import SIGNATURE_RSA_SHA512 as SIGNATURE_RSA
22
25
except ImportError :
23
26
from oauthlib .oauth1 import SIGNATURE_RSA
24
-
25
- import time
26
-
27
- import urllib3
28
- from http .cookiejar import CookieJar
29
-
30
- import urllib3
27
+
31
28
from requests import HTTPError , Response , Session
32
29
from requests_oauthlib import OAuth1 , OAuth2
33
30
from six .moves .urllib .parse import urlencode
Original file line number Diff line number Diff line change 1
1
from typing import Union
2
+
2
3
from typing_extensions import TypeAlias
3
4
4
5
T_id : TypeAlias = Union [str , int ]
You can’t perform that action at this time.
0 commit comments