Skip to content

Commit b3e2a70

Browse files
committed
Renaming: utils -> compat
1 parent 2dfca50 commit b3e2a70

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

pygithub3/core/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
33

4-
from pygithub3.core.utils import json
4+
from pygithub3.core.compat import json
55
from pygithub3.exceptions import NotFound, BadRequest, UnprocessableEntity
66

77

pygithub3/requests/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import re
55

6-
from pygithub3.core.utils import import_module, json
6+
from pygithub3.core.compat import import_module, json
77
from pygithub3.exceptions import (RequestDoesNotExist, UriInvalid,
88
ValidationError, InvalidBodySchema)
99
from pygithub3.resources.base import Raw

pygithub3/resources/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from datetime import datetime
55

6-
from pygithub3.core.utils import json
6+
from pygithub3.core.compat import json
77

88
GITHUB_DATE_FORMAT = '%Y-%m-%dT%H:%M:%SZ'
99

pygithub3/resources/repos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- encoding: utf-8 -*-
33

4-
from pygithub3.core.utils import OrderedDict
4+
from pygithub3.core.compat import OrderedDict
55

66
from .base import Resource
77
from .users import User

0 commit comments

Comments
 (0)