Skip to content

Commit

Permalink
bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimerzp committed May 13, 2024
1 parent 8e0c258 commit db6fbd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ end

function _get_cl_name(t1, t2)
name_dict = Dict("lens"=>"e", "source"=>"0")
name_1 = t1[1:end-2]
name_2 = t2[1:end-2]
name_1 = pyconvert(String, t1)[1:end-2]
name_2 = pyconvert(String, t2)[1:end-2]
spin1 = name_dict[name_1]
spin2 = name_dict[name_2]
cl_name = string("cl_", spin1 , spin2)
Expand Down

0 comments on commit db6fbd9

Please sign in to comment.