We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a25435e commit 5fc6178Copy full SHA for 5fc6178
sendgrid/__init__.py
@@ -15,7 +15,7 @@
15
Modules to help with common tasks.
16
"""
17
18
-from version import __version__ # noqa
+from .version import __version__ # noqa
19
# v3 API
20
-from sendgrid import SendGridAPIClient # noqa
21
-from helpers.mail import Email # noqa
+from .sendgrid import SendGridAPIClient # noqa
+from .helpers.mail import Email # noqa
sendgrid/sendgrid.py
@@ -18,7 +18,7 @@
import python_http_client
-from version import __version__
+from .version import __version__
22
23
24
class SendGridAPIClient(object):
0 commit comments