Skip to content

Commit c6eb516

Browse files
committed
Fix black (again, again)
1 parent a235199 commit c6eb516

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

hoi/metrics/rsi.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,7 @@ def fit(self, minsize=2, maxsize=None, method="gcmi", **kwargs):
114114

115115
# prepare the shapes of outputs
116116
n_mults = sum(
117-
[
118-
ccomb(self._n_features_x, c)
119-
for c in range(minsize, maxsize + 1)
120-
]
117+
[ccomb(self._n_features_x, c) for c in range(minsize, maxsize + 1)]
121118
)
122119
hoi = jnp.zeros((n_mults, self.n_variables), dtype=jnp.float32)
123120
h_idx = jnp.full((n_mults, maxsize), -1, dtype=int)

0 commit comments

Comments
 (0)