Commit 2315451f authored by Joseph Siddons's avatar Joseph Siddons
Browse files

chore: format

parent 0cece6fb
......@@ -111,8 +111,8 @@
"\n",
" if len(missing) > 0:\n",
" err_str = f\"({calling_func}) - {var_name} missing required columns. \"\n",
" err_str += f'Require: {\", \".join(cols)}. '\n",
" err_str += f'Missing: {\", \".join(missing)}.'\n",
" err_str += f\"Require: {', '.join(cols)}. \"\n",
" err_str += f\"Missing: {', '.join(missing)}.\"\n",
" raise ValueError(err_str)\n",
"\n",
" return\n",
......
......@@ -89,8 +89,8 @@
"\n",
" if len(missing) > 0:\n",
" err_str = f\"({calling_func}) - {var_name} missing required columns. \"\n",
" err_str += f'Require: {\", \".join(cols)}. '\n",
" err_str += f'Missing: {\", \".join(missing)}.'\n",
" err_str += f\"Require: {', '.join(cols)}. \"\n",
" err_str += f\"Missing: {', '.join(missing)}.\"\n",
" raise ValueError(err_str)\n",
"\n",
" return\n",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment