Skip to content

Commit b284d2a

Browse files
committed
fixed indentation
1 parent c2169e8 commit b284d2a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

pyttitools-PYTTI_local.ipynb

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,17 @@
9595
"try:\n",
9696
" assert isinstance(CONFIG_OVERRIDES, list)\n",
9797
"except AssertionError:\n",
98-
" if is_instance(CONFIG_OVERRIDES, str):\n",
99-
" logger.warning(\n",
100-
" \"The CONFIG_OVERRIDES variable should be a list of filenames.\"\n",
101-
" \"I noticed you set this variable to a string. I'll wrap that in \"\n",
102-
" \"a list for you this time, but after this cell completes execution, \"\n",
103-
" \"please repair how you set the variable above. Instead of\"\n",
104-
" f'\\n\\n\\tCONFIG_OVERRIDES=\"{CONFIG_OVERRIDES}\\n\\n'\n",
105-
" \"it should be\"\n",
106-
" f'\\n\\n\\tCONFIG_OVERRIDES=[\"{CONFIG_OVERRIDES}\"]\\n\\n'\n",
107-
" )\n",
108-
" CONFIG_OVERRIDES = [CONFIG_OVERRIDES]\n",
98+
" if isinstance(CONFIG_OVERRIDES, str):\n",
99+
" logger.warning(\n",
100+
" \"The CONFIG_OVERRIDES variable should be a list of filenames.\"\n",
101+
" \"I noticed you set this variable to a string. I'll wrap that in \"\n",
102+
" \"a list for you this time, but after this cell completes execution, \"\n",
103+
" \"please repair how you set the variable above. Instead of\"\n",
104+
" f'\\n\\n\\tCONFIG_OVERRIDES=\"{CONFIG_OVERRIDES}\\n\\n'\n",
105+
" \"it should be\"\n",
106+
" f'\\n\\n\\tCONFIG_OVERRIDES=[\"{CONFIG_OVERRIDES}\"]\\n\\n'\n",
107+
" )\n",
108+
" CONFIG_OVERRIDES = [CONFIG_OVERRIDES]\n",
109109
"\n",
110110
"\n",
111111
"import os\n",

0 commit comments

Comments
 (0)