From 5c0f04773a6fd4ee626e6c3825d2d770369e8ad2 Mon Sep 17 00:00:00 2001 From: jmcchesn <jmcchesn@aps.anl.gov> Date: Mon, 29 Aug 2022 17:05:19 -0500 Subject: [PATCH] typo --- iexcode/instruments/ARPES.py | 4 ++-- iexcode/instruments/Kappa.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/iexcode/instruments/ARPES.py b/iexcode/instruments/ARPES.py index d57b89b..29ead32 100644 --- a/iexcode/instruments/ARPES.py +++ b/iexcode/instruments/ARPES.py @@ -50,9 +50,9 @@ def ARPES_init(*userName,**kwargs): #motors physical_motors = ['x','y','z','th','chi','phi'] - psuedo_motors = ['focus'] + pseudo_motors = ['focus'] global ARPES_Motors - ARPES_Motors = Motors('ARPES',_ARPES_motor_dictionary(),physical_motors,psuedo_motors) + ARPES_Motors = Motors('ARPES',_ARPES_motor_dictionary(),physical_motors,pseudo_motors) #endstation iex.BL = Endstation('ARPES',kwargs['scan_ioc'],kwargs['xrays'],kwargs['mode'],ARPES_Motors) diff --git a/iexcode/instruments/Kappa.py b/iexcode/instruments/Kappa.py index eb6e593..2f07614 100644 --- a/iexcode/instruments/Kappa.py +++ b/iexcode/instruments/Kappa.py @@ -53,9 +53,9 @@ def Kappa_init(*userName,**kwargs): #motors physical_motors = ['x','y','z','tth','kth','kap','kphi'] - psuedo_motors = ['th','chi','phi'] + pseudo_motors = ['th','chi','phi'] global Kappa_Motors - Kappa_Motors = Motors('Kappa',_Kappa_motor_dictionary(),physical_motors,psuedo_motors) + Kappa_Motors = Motors('Kappa',_Kappa_motor_dictionary(),physical_motors,pseudo_motors) #endstation iex.BL = Endstation('Kappa',kwargs['scan_ioc'],kwargs['xrays'],kwargs['mode'],Kappa_Motors) -- GitLab