diff --git a/artiq/coredevice/__init__.py b/artiq/coredevice/__init__.py index 9ea9f5c33..61b0e2573 100644 --- a/artiq/coredevice/__init__.py +++ b/artiq/coredevice/__init__.py @@ -1,12 +1,11 @@ from artiq.coredevice import exceptions, dds, spi from artiq.coredevice.exceptions import (RTIOUnderflow, RTIOSequenceError, - RTIOCollision, RTIOOverflow, RTIOBusy, - DDSBatchError, CacheError) + RTIOCollision, RTIOOverflow, RTIOBusy) from artiq.coredevice.dds import (PHASE_MODE_CONTINUOUS, PHASE_MODE_ABSOLUTE, PHASE_MODE_TRACKING) __all__ = [] __all__ += ["RTIOUnderflow", "RTIOSequenceError", "RTIOCollision", - "RTIOOverflow", "RTIOBusy", "DDSBatchError", "CacheError"] + "RTIOOverflow", "RTIOBusy"] __all__ += ["PHASE_MODE_CONTINUOUS", "PHASE_MODE_ABSOLUTE", "PHASE_MODE_TRACKING"]