Skip to content

Commit 60ac81c

Browse files
committed
make flake8 happy
1 parent 80159b4 commit 60ac81c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

edrixs/angular_momentum.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -708,9 +708,9 @@ def cf_trigonal_d(case, Delta1, Delta2):
708708
- '100': :math:`z` axis vertical
709709
710710
Delta1: float scalar
711-
The :math:`e^\sigma_g` orbitals are Delta1 above the :math:`a^_{1g}`
711+
The :math:`e^\\sigma_g` orbitals are Delta1 above the :math:`a^_{1g}`
712712
Delta1: float scalar
713-
The :math:`e^\pi_g` orbitals are Delta2 below the :math:`a^_{1g}`
713+
The :math:`e^\\pi_g` orbitals are Delta2 below the :math:`a^_{1g}`
714714
715715
Returns
716716
-------
@@ -719,23 +719,23 @@ def cf_trigonal_d(case, Delta1, Delta2):
719719
"""
720720

721721
cf_trig = np.zeros((5, 5), dtype=complex)
722-
cf_trig[0, 0] = 0 # a1g
723-
cf_trig[1, 1] = -Delta2 # epi_g
724-
cf_trig[2, 2] = -Delta2 # epi_g
725-
cf_trig[3, 3] = Delta1 # esigma_g
726-
cf_trig[4, 4] = Delta1 # esigma_g
722+
cf_trig[0, 0] = 0 # a1g
723+
cf_trig[1, 1] = -Delta2 # epi_g
724+
cf_trig[2, 2] = -Delta2 # epi_g
725+
cf_trig[3, 3] = Delta1 # esigma_g
726+
cf_trig[4, 4] = Delta1 # esigma_g
727727

728728
cf_trig_spin = np.zeros((10, 10), dtype=complex)
729729
cf_trig_spin[::2, ::2] = cf_trig
730730
cf_trig_spin[1::2, 1::2] = cf_trig
731731

732732
if case == '111':
733733
cf_real = cb_op(cf_trig_spin, tmat_trig2r('111', ispin=True))
734-
cf = cb_op(cf_real, tmat_r2c('d', ispin=True))
734+
cf = cb_op(cf_real, tmat_r2c('d', ispin=True))
735735
return cf
736736
elif case == '100':
737737
cf_real = cb_op(cf_trig_spin, tmat_trig2r('100', ispin=True))
738-
cf = cb_op(cf_real, tmat_r2c('d', ispin=True))
738+
cf = cb_op(cf_real, tmat_r2c('d', ispin=True))
739739
return cf
740740
else:
741741
raise Exception(f"case {case} not implemented."

0 commit comments

Comments
 (0)