Skip to content

Commit

Permalink
Linter!
Browse files Browse the repository at this point in the history
  • Loading branch information
ceriottm committed Aug 26, 2024
1 parent a4f7964 commit 8370268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/pi-metad/pi-metad.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,12 +701,12 @@ def moving_average(arr, window_size):

import bz2

with bz2.open("data/FES-md_hiq.bz2", 'rt') as f:
with bz2.open("data/FES-md_hiq.bz2", "rt") as f:
data = np.loadtxt(f, comments="#")[:, :3]
xyz_md_hiq = np.array([10, 1, 0.01036427])[:, np.newaxis, np.newaxis] * data.T.reshape(
3, 101, 101
)
with bz2.open("data/FES-pimd_hiq.bz2", 'rt') as f:
with bz2.open("data/FES-pimd_hiq.bz2", "rt") as f:
data = np.loadtxt(f, comments="#")[:, :3]
xyz_pi_hiq = np.array([10, 1, 0.01036427])[:, np.newaxis, np.newaxis] * data.T.reshape(
3, 101, 101
Expand Down

0 comments on commit 8370268

Please sign in to comment.