Skip to content

Commit 03cf7e2

Browse files
some fixes
1 parent 23e450f commit 03cf7e2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Keithley_6517B/High_Resistance/Backends/IV_K6517B_Simple_Backend_v10.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def main():
8484

8585
try:
8686
# Get sweep parameters from the user
87-
start_v, stop_v, steps, delay, filename = get_user_parameters()
87+
start_v, stop_v, steps, delay, filename = get_sweep_parameters()
8888
voltage_sweep = np.linspace(start_v, stop_v, steps)
8989

9090
# --- 2. CONNECT TO INSTRUMENT (V5 Logic) ---

deployment/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def get_tcl_tk_add_data_args():
9898
bundle the Tcl/Tk libraries, preventing runtime FileNotFoundError.
9999
"""
100100
try:
101-
from pyi_tcl_hook import get_tcl_tk_paths
101+
from pyi_tcl_hook import get_tcl_tk_paths # type: ignore
102102
tcl_path, tk_path = get_tcl_tk_paths()
103103
# The destination folder name inside the bundle must match what the
104104
# hook expects.

0 commit comments

Comments
 (0)