Skip to content

Commit edbbb29

Browse files
committed
deleted blank space pointed out by flake8
1 parent 8398188 commit edbbb29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoPyTorch/datasets/base_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def __getitem__(self, index: int, train: bool = True) -> Tuple[np.ndarray, ...]:
176176
Returns:
177177
A transformed single point prediction
178178
"""
179-
179+
180180
X = self.train_tensors[0].iloc[[index]] if hasattr(self.train_tensors[0], 'loc') \
181181
else self.train_tensors[0][index]
182182

0 commit comments

Comments
 (0)