Skip to content

Commit ae1c070

Browse files
committed
Make functions available from utils module again
1 parent 778d94b commit ae1c070

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/graphql_relay/utils/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
"""graphql_relay.utils"""
2+
3+
from .base64 import base64, unbase64
4+
5+
__all__ = ['base64', 'unbase64']

tests/utils/test_base64.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from graphql_relay.utils.base64 import base64, unbase64
1+
from graphql_relay.utils import base64, unbase64
22

33

44
example_unicode = 'Some examples: ❤😀'

0 commit comments

Comments
 (0)