Source code for qcodes.instrument_drivers.Keysight.Keysight_34465A_submodules
from typing import Any
from .private.Keysight_344xxA_submodules import _Keysight_344xxA
[docs]class Keysight34465A(_Keysight_344xxA):
"""
This is the qcodes driver for the Keysight 34465A Multimeter
"""
def __init__(self, name: str, address: str, silent: bool = False,
**kwargs: Any):
super().__init__(name, address, silent, **kwargs)
class Keysight_34465A(Keysight34465A):
"""
Alias for backwards compatibility.
"""