From: W. Trevor King Date: Tue, 27 Sep 2011 19:50:50 +0000 (-0400) Subject: Remove unneccessary inputs from pyafm.afm. X-Git-Tag: v0.4~54 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d7c0941c55be6111527e1d05d96005d269398b2a;p=pyafm.git Remove unneccessary inputs from pyafm.afm. --- diff --git a/pyafm/afm.py b/pyafm/afm.py index 940c216..9ff467a 100644 --- a/pyafm/afm.py +++ b/pyafm/afm.py @@ -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