Skip to content

Commit 4559032

Browse files
authored
Add indent block
1 parent 535e305 commit 4559032

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

art/metrics/verification_decisions_trees.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,10 +204,10 @@ def verify(
204204
:return: A tuple of the average robustness bound and the verification error at `eps`.
205205
"""
206206
if np.min(x) < 0 or np.max(x) > 1:
207-
raise ValueError(
208-
"There are features not in the range [0, 1]. The current implementation only supports normalized input"
209-
"values in range [0 1]."
210-
)
207+
raise ValueError(
208+
"There are features not in the range [0, 1]. The current implementation only supports normalized input"
209+
"values in range [0 1]."
210+
)
211211

212212
self.x: np.ndarray = x
213213
self.y: np.ndarray = check_and_transform_label_format(

0 commit comments

Comments
 (0)