Fix import order

This commit is contained in:
Pedro Ferreira
2018-02-04 15:50:56 +01:00
parent 9fcb0bc20f
commit 7949cba7d7
6 changed files with 8 additions and 12 deletions

View File

@@ -1,14 +1,12 @@
import os
import yaml
from asyncio import get_event_loop
from base64 import b64decode
import yaml
from nacl.signing import SigningKey
from secret_handshake import SHSClient
with open(os.path.expanduser('~/.ssb/secret')) as f:
config = yaml.load(f)

View File

@@ -1,14 +1,12 @@
import os
import yaml
from asyncio import get_event_loop
from base64 import b64decode
import yaml
from nacl.signing import SigningKey
from secret_handshake import SHSServer
with open(os.path.expanduser('~/.ssb/secret')) as f:
config = yaml.load(f)