Skip to content

Commit 471f884

Browse files
committed
Fix checkpoint error
1 parent 3a5db22 commit 471f884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ensemble_md/cli/run_REXEE.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def main():
140140
REXEE.equil = np.load(args.equil)
141141
print(f'equil: {REXEE.equil}')
142142
if REXEE.proposal == 'random_range' and os.path.isfile('track_swap_frame.npy'):
143-
REXEE.track_swap_frame = np.load('track_swap_frame.npy')
143+
REXEE.track_swap_frame = list(np.load('track_swap_frame.npy'))
144144
else:
145145
start_idx = None
146146

0 commit comments

Comments
 (0)