Skip to content

Commit

Permalink
fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarx committed Feb 9, 2022
1 parent c2169e8 commit b284d2a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pyttitools-PYTTI_local.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -95,17 +95,17 @@
"try:\n",
" assert isinstance(CONFIG_OVERRIDES, list)\n",
"except AssertionError:\n",
" if is_instance(CONFIG_OVERRIDES, str):\n",
" logger.warning(\n",
" \"The CONFIG_OVERRIDES variable should be a list of filenames.\"\n",
" \"I noticed you set this variable to a string. I'll wrap that in \"\n",
" \"a list for you this time, but after this cell completes execution, \"\n",
" \"please repair how you set the variable above. Instead of\"\n",
" f'\\n\\n\\tCONFIG_OVERRIDES=\"{CONFIG_OVERRIDES}\\n\\n'\n",
" \"it should be\"\n",
" f'\\n\\n\\tCONFIG_OVERRIDES=[\"{CONFIG_OVERRIDES}\"]\\n\\n'\n",
" )\n",
" CONFIG_OVERRIDES = [CONFIG_OVERRIDES]\n",
" if isinstance(CONFIG_OVERRIDES, str):\n",
" logger.warning(\n",
" \"The CONFIG_OVERRIDES variable should be a list of filenames.\"\n",
" \"I noticed you set this variable to a string. I'll wrap that in \"\n",
" \"a list for you this time, but after this cell completes execution, \"\n",
" \"please repair how you set the variable above. Instead of\"\n",
" f'\\n\\n\\tCONFIG_OVERRIDES=\"{CONFIG_OVERRIDES}\\n\\n'\n",
" \"it should be\"\n",
" f'\\n\\n\\tCONFIG_OVERRIDES=[\"{CONFIG_OVERRIDES}\"]\\n\\n'\n",
" )\n",
" CONFIG_OVERRIDES = [CONFIG_OVERRIDES]\n",
"\n",
"\n",
"import os\n",
Expand Down

0 comments on commit b284d2a

Please sign in to comment.