Skip to content

Commit af6b1a9

Browse files
committed
[fix] warning for invalid escape sequence
1 parent 5351640 commit af6b1a9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/solid_dmft/postprocessing/eval_U_cRPA_Vasp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ def red_to_2ind(uijkl, n_sites, n_orb, out=False):
140140
np.set_printoptions(precision=3, suppress=True)
141141

142142
if out:
143-
print('reduced U anti-parallel = U_mm\'\^oo\' = U_mm\'mm\' matrix : \n', Uij_anti)
144-
print('reduced U parallel = U_mm\'\^oo = U_mm\'mm\' - U_mm\'m\'m matrix : \n', Uij_par)
143+
print(r"reduced U anti-parallel = U_mm'\^oo' = U_mm'mm' matrix : \n", Uij_anti)
144+
print(r"reduced U parallel = U_mm'\^oo = U_mm'mm' - U_mm'm'm matrix : \n", Uij_par)
145145
print('reduced Uijji : \n', Uijji)
146146
print('reduced Uiijj : \n', Uiijj)
147147

0 commit comments

Comments
 (0)