Source code for qcodes.instrument_drivers.Keysight.Keysight_P5004B

from typing import TYPE_CHECKING

from . import N52xx

if TYPE_CHECKING:
    from typing_extensions import Unpack

    from qcodes.instrument import VisaInstrumentKWArgs


[docs] class KeysightP5004B(N52xx.KeysightPNAxBase): def __init__( self, name: str, address: str, **kwargs: "Unpack[VisaInstrumentKWArgs]" ): super().__init__( name, address, min_freq=9e3, max_freq=20e9, min_power=-80, max_power=10, nports=2, **kwargs, )