Fix incorrect indentation (#536)

This commit is contained in:
Kasen 2025-02-19 04:47:31 +08:00 committed by GitHub
parent 18dd8ab633
commit 0a5214b804

View File

@ -382,7 +382,7 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": null,
"id": "3e4a15ec-2667-4f56-b7c1-34e8071b621d",
"metadata": {},
"outputs": [],
@ -499,7 +499,7 @@
" if lines and lines[0].startswith(\"#\"):\n",
" lines = lines[1:]\n",
"\n",
" for rank, line in enumerate(lines):\n",
" for line in lines:\n",
" pair = tuple(line.strip().split())\n",
" if len(pair) == 2:\n",
" token1, token2 = pair\n",