Skip to content

Commit 64d8a5d

Browse files
committed
black
1 parent 95d3e1d commit 64d8a5d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

PUQ/designmethods/sequential_md_deterministic.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,7 @@ def build_design(self, z0, f0, T, af, test=None, args={}):
8787
acq_func.acquire_new()
8888
tnew = acq_func.znew
8989

90-
fnew = self.cls_func.function(*tnew.flatten()).reshape(
91-
1, self.cls_func.d
92-
)
90+
fnew = self.cls_func.function(*tnew.flatten()).reshape(1, self.cls_func.d)
9391

9492
f0 = np.concatenate((f0, fnew), axis=0)
9593
z0 = np.concatenate((z0, tnew), axis=0)

0 commit comments

Comments
 (0)