Skip to content

Commit d13dc93

Browse files
committed
Confluence: Prepare dedicated module
1 parent 2293364 commit d13dc93

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

atlassian/bamboo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import logging
33

44
from requests.exceptions import HTTPError
5+
56
from .rest_client import AtlassianRestAPI
67

78
log = logging.getLogger(__name__)

atlassian/bitbucket/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import copy
44
import re
55
import sys
6-
76
from datetime import datetime
87
from pprint import PrettyPrinter
8+
99
from ..rest_client import AtlassianRestAPI
1010

1111
RE_TIMEZONE = re.compile(r"(\d{2}):(\d{2})$")

atlassian/confluence.py renamed to atlassian/confluence/__init___.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@
1313
from requests import HTTPError
1414

1515
from 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

2726
log = logging.getLogger(__name__)
2827

0 commit comments

Comments
 (0)