fix imports

This commit is contained in:
Roman Zeyde
2014-08-07 17:00:31 +03:00
parent 99de92c7e8
commit cb08b23aa3
10 changed files with 42 additions and 31 deletions

View File

@@ -1,5 +1,9 @@
import os
from cStringIO import StringIO
try:
from cStringIO import StringIO as BytesIO
except ImportError:
from io import BytesIO # Python 3
import numpy as np
from amodem import send