File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22import logging
33
44from requests .exceptions import HTTPError
5+
56from .rest_client import AtlassianRestAPI
67
78log = logging .getLogger (__name__ )
Original file line number Diff line number Diff line change 33import copy
44import re
55import sys
6-
76from datetime import datetime
87from pprint import PrettyPrinter
8+
99from ..rest_client import AtlassianRestAPI
1010
1111RE_TIMEZONE = re .compile (r"(\d{2}):(\d{2})$" )
Original file line number Diff line number Diff line change 1313from requests import HTTPError
1414
1515from atlassian import utils
16-
17- from .errors import (
16+ from atlassian .errors import (
1817 ApiConflictError ,
1918 ApiError ,
2019 ApiNotAcceptable ,
2120 ApiNotFoundError ,
2221 ApiPermissionError ,
2322 ApiValueError ,
2423)
25- from .rest_client import AtlassianRestAPI
24+ from atlassian .rest_client import AtlassianRestAPI
2625
2726log = logging .getLogger (__name__ )
2827
You can’t perform that action at this time.
0 commit comments