Skip to content

Commit

Permalink
Remove unused enumerate()
Browse files Browse the repository at this point in the history
  • Loading branch information
vatai committed Aug 16, 2024
1 parent 4460711 commit 1a455d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radicalpy/experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def semiclassical_kinetics_mary(

for i, B0 in enumerate(tqdm(Bs)):
Hz = sim.zeeman_hamiltonian(B0)
for j, HH in enumerate(HHs):
for HH in HHs:
Ht = Hz + HH + HJ + HD
L = sim.convert(Ht)
sim.apply_liouville_hamiltonian_modifiers(L, relaxations)
Expand Down

0 comments on commit 1a455d7

Please sign in to comment.