Skip to content

Commit fe491a3

Browse files
committed
update README import Mixnode statements
1 parent b90fada commit fe491a3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This SDK comes with Basic Authentication over HTTPS which requires you to pass y
3131
This type of token is given directly to the application.
3232

3333
``` Python
34-
import Mixnode
34+
from mixnode import Mixnode
3535

3636
# Create an instance of the Mixnode Client
3737
client = Mixnode("Your API Key") #add your API KEY here; available at https://www.mixnode.com/account/api

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This type of token is given directly to the application.
5050

5151
.. code:: Python
5252
53-
import Mixnode
53+
from mixnode import Mixnode
5454
5555
# Create an instance of the Mixnode Client
5656
client = Mixnode("Your API Key") #add your API KEY here; available at https://www.mixnode.com/account/api

mixnode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
mixnode - Mixnode Python SDK
2323
~~~~~~~~~~~~~~~~~~~~~
2424
25-
>>> import mixnode
25+
>>> from mixnode import Mixnode
2626
>>> client = Mixnode('Your API Key')
2727
2828
:license: Apache 2.0, see LICENSE for more details.

0 commit comments

Comments
 (0)