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