remove unused code.

This commit is contained in:
Roman Zeyde
2014-12-30 18:21:00 +02:00
parent 2c408907c4
commit c37cf741bc
5 changed files with 0 additions and 13 deletions

View File

@@ -16,14 +16,11 @@ except ImportError:
argcomplete = None
import logging
log = logging.getLogger('__name__')
from amodem import recv, send, calib, audio
from amodem.config import bitrates
null = open('/dev/null', 'wb')
import os
bitrate = os.environ.get('BITRATE', 1)
config = bitrates.get(int(bitrate))

View File

@@ -1,8 +1,5 @@
import numpy as np
from numpy import linalg
import logging
log = logging.getLogger(__name__)
from . import common

View File

@@ -1,4 +1,3 @@
''' Reed-Solomon CODEC. '''
from . import common
import bitarray

View File

@@ -1,12 +1,9 @@
#!/usr/bin/env python
import numpy as np
import itertools
import logging
from amodem import common
log = logging.getLogger(__name__)
class Interpolator(object):
def __init__(self, resolution=10000, width=128):

View File

@@ -1,7 +1,4 @@
import time
import logging
log = logging.getLogger(__name__)
class Reader(object):