Skip to content

Commit dd0a2b7

Browse files
committed
pandas df loading tutorial: Fix incorrect suer().__init__() call
1 parent e4ab8e0 commit dd0a2b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/en/tutorials/load_data/pandas_dataframe.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@
533533
"class MyModel(tf.keras.Model):\n",
534534
" def __init__(self):\n",
535535
" # Create all the internal layers in init.\n",
536-
" super().__init__(self)\n",
536+
" super().__init__()\n",
537537
"\n",
538538
" self.normalizer = tf.keras.layers.Normalization(axis=-1)\n",
539539
"\n",

0 commit comments

Comments
 (0)