|
139 | 139 | " ValueError\n", |
140 | 140 | " If the JSON file contains an ``estimate`` or ``uncertainty`` key with the\n", |
141 | 141 | " value ``None``.\n", |
142 | | - " If \n", |
| 142 | + " If\n", |
143 | 143 | " \"\"\"\n", |
144 | 144 | "\n", |
145 | 145 | " # TODO: only load this once during collection, then pass namedtuple(fname, dict) into this function\n", |
|
342 | 342 | "metadata": {}, |
343 | 343 | "outputs": [], |
344 | 344 | "source": [ |
345 | | - "def generate_ddg(\n", |
346 | | - " results_dict: dict[str, dict[str, list]]\n", |
347 | | - ") -> pd.DataFrame:\n", |
| 345 | + "def generate_ddg(results_dict: dict[str, dict[str, list]]) -> pd.DataFrame:\n", |
348 | 346 | " \"\"\"Compute and write out DDG values for the given results.\n", |
349 | 347 | "\n", |
350 | 348 | " Parameters\n", |
|
386 | 384 | "metadata": {}, |
387 | 385 | "outputs": [], |
388 | 386 | "source": [ |
389 | | - "def generate_dg_mle(\n", |
390 | | - " results_dict: dict[str, dict[str, list]]\n", |
391 | | - ") -> pd.DataFrame:\n", |
| 387 | + "def generate_dg_mle(results_dict: dict[str, dict[str, list]]) -> pd.DataFrame:\n", |
392 | 388 | " \"\"\"Compute and write out MLE-derived DG values for the given results.\n", |
393 | 389 | "\n", |
394 | 390 | " Parameters\n", |
|
436 | 432 | "metadata": {}, |
437 | 433 | "outputs": [], |
438 | 434 | "source": [ |
439 | | - "def generate_dg_raw(\n", |
440 | | - " results_dict: dict[str, dict[str, list]]\n", |
441 | | - ") -> pd.DataFrame:\n", |
| 435 | + "def generate_dg_raw(results_dict: dict[str, dict[str, list]]) -> pd.DataFrame:\n", |
442 | 436 | " \"\"\"\n", |
443 | 437 | " Get all the transformation cycle legs found and their DG values.\n", |
444 | 438 | "\n", |
|
0 commit comments