Remove unneccessary inputs from pyafm.afm.
authorW. Trevor King <wking@drexel.edu>
Tue, 27 Sep 2011 19:50:50 +0000 (15:50 -0400)
committerW. Trevor King <wking@drexel.edu>
Tue, 27 Sep 2011 19:50:50 +0000 (15:50 -0400)
pyafm/afm.py

index 940c216fc448d48c3802cd349d49879f83e7eed6..9ff467a16697d87fbe218e1ea5672b8f789609d0 100644 (file)
@@ -23,17 +23,6 @@ for controlling the piezo (`pypiezo`) and stepper (`stepper`), this
 module only contains methods that require the capabilities of both.
 """
 
-from pycomedi.device import Device
-from pycomedi.subdevice import StreamingSubdevice
-from pycomedi.channel import AnalogChannel, DigitalChannel
-from pycomedi.constant import AREF, IO_DIRECTION, SUBDEVICE_TYPE, UNIT
-from pypiezo.afm import AFMPiezo
-from pypiezo.base import PiezoAxis, InputChannel
-from pypiezo.config import HDF5_ChannelConfig, HDF5_AxisConfig, pprint_HDF5
-from stepper import Stepper
-from pyafm import AFM
-from pypid.controller import Controller
-from pypid.backend import get_backend
 from . import LOG as _LOG