We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7732dd commit a25435eCopy full SHA for a25435e
2 files changed
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