Skip to content

Commit

Permalink
Move import nacl.bindings (#193)
Browse files Browse the repository at this point in the history
before from nacl import(s)
  • Loading branch information
lmctv authored and alex committed Aug 16, 2016
1 parent 8621244 commit 21cc20b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/nacl/public.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

from __future__ import absolute_import, division, print_function

from nacl import encoding
import nacl.bindings
from nacl import encoding
from nacl.utils import EncryptedMessage, StringFixer, random


Expand Down
2 changes: 1 addition & 1 deletion src/nacl/secret.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

from __future__ import absolute_import, division, print_function

from nacl import encoding
import nacl.bindings
from nacl import encoding
from nacl.utils import EncryptedMessage, StringFixer


Expand Down
2 changes: 1 addition & 1 deletion src/nacl/signing.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

import six

import nacl.bindings
from nacl import encoding

import nacl.bindings
from nacl.public import (PrivateKey as _Curve25519_PrivateKey,
PublicKey as _Curve25519_PublicKey)
from nacl.utils import StringFixer, random
Expand Down

0 comments on commit 21cc20b

Please sign in to comment.