Skip to content

Commit 5fc6178

Browse files
committed
Reverted changes to files in /sendgrid
1 parent a25435e commit 5fc6178

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sendgrid/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
Modules to help with common tasks.
1616
"""
1717

18-
from version import __version__ # noqa
18+
from .version import __version__ # noqa
1919
# v3 API
20-
from sendgrid import SendGridAPIClient # noqa
21-
from helpers.mail import Email # noqa
20+
from .sendgrid import SendGridAPIClient # noqa
21+
from .helpers.mail import Email # noqa

sendgrid/sendgrid.py

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

1919
import python_http_client
2020

21-
from version import __version__
21+
from .version import __version__
2222

2323

2424
class SendGridAPIClient(object):

0 commit comments

Comments
 (0)