Skip to content

Commit

Permalink
deprecate voltage divider
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Jan 12, 2023
1 parent 293c4c3 commit 525de1b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qcodes/parameters/voltage_divider.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
from __future__ import annotations

from typing import TYPE_CHECKING, Optional, Union
from typing import TYPE_CHECKING

from qcodes.parameters import Parameter
from qcodes.utils import deprecate

if TYPE_CHECKING:
from qcodes.instrument import Instrument


@deprecate(alternative="DelegateParameter")
class VoltageDivider(Parameter):
"""
Resitive voltage divider
Expand Down

0 comments on commit 525de1b

Please sign in to comment.