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 e6fe94c commit 943ec19Copy full SHA for 943ec19
test.py
@@ -1,11 +1,11 @@
1
import unittest
2
-import mailjet_rest.client
+from mailjet_rest import Client
3
import os
4
5
API_KEY = os.environ['MJ_APIKEY_PUBLIC']
6
API_SECRET = os.environ['MJ_APIKEY_PRIVATE']
7
8
-mj = mailjet.Client(auth=(API_KEY, API_SECRET))
+mj = Client(auth=(API_KEY, API_SECRET))
9
10
class TestSuite(unittest.TestCase):
11
0 commit comments