Standardize spacing code style (#150)

This commit is contained in:
Donne Martin
2017-02-25 20:20:16 -05:00
committed by GitHub
parent eba98452e3
commit 7884146d54
3 changed files with 13 additions and 13 deletions

View File

@@ -100,9 +100,9 @@
" if chars is None or not chars:\n",
" return chars\n",
" size = len(chars)\n",
" for i in range(size//2):\n",
" chars[i], chars[size-1-i] = \\\n",
" chars[size-1-i], chars[i]\n",
" for i in range(size // 2):\n",
" chars[i], chars[size - 1 - i] = \\\n",
" chars[size - 1 - i], chars[i]\n",
" return chars"
]
},
@@ -307,7 +307,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.0"
"version": "3.4.3"
}
},
"nbformat": 4,