Source code for qcodes.instrument_drivers.Keysight.Keysight_34410A_submodules

from typing import TYPE_CHECKING

from .private.Keysight_344xxA_submodules import Keysight344xxA

if TYPE_CHECKING:
    from typing_extensions import Unpack

    from qcodes.instrument import VisaInstrumentKWArgs


[docs] class Keysight34410A(Keysight344xxA): """ This is the qcodes driver for the Keysight 34410A Multimeter """ def __init__( self, name: str, address: str, silent: bool = False, **kwargs: "Unpack[VisaInstrumentKWArgs]", ): super().__init__(name, address, silent, **kwargs)