Skip to content

Commit e178b55

Browse files
author
Beat Buesser
committed
Fix style check - pylint
Signed-off-by: Beat Buesser <[email protected]>
1 parent 0a28c83 commit e178b55

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

art/estimators/generation/tensorflow.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,9 @@ def encoding_length(self) -> int:
259259
def input_shape(self) -> Tuple[int, ...]:
260260
raise NotImplementedError
261261

262-
def predict(self, x: np.ndarray, batch_size: int = 128, training_mode: bool = False, **kwargs) -> np.ndarray:
262+
def predict( # pylint: disable=W0221
263+
self, x: np.ndarray, batch_size: int = 128, training_mode: bool = False, **kwargs
264+
) -> np.ndarray:
263265
"""
264266
Perform projections over a batch of encodings.
265267

0 commit comments

Comments
 (0)