Skip to content

Commit 3e5931c

Browse files
committed
fix lint
1 parent ecbeae2 commit 3e5931c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration/test_ml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def keras_model():
322322
x_tensor = tf.convert_to_tensor(x_list, dtype=tf.float32)
323323
y_tensor = tf.convert_to_tensor(y_list, dtype=tf.float32)
324324
model = tf.keras.models.Sequential([
325-
tf.keras.Input(shape=(1,)),
325+
tf.keras.Input(shape=(1,)),
326326
tf.keras.layers.Dense(units=1)
327327
])
328328
model.compile(optimizer='sgd', loss='mean_squared_error')

0 commit comments

Comments
 (0)