From e47f08cdf0080b244d1a1633bd44d2bd31170581 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 17:32:12 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- examples/concepts.ipynb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/examples/concepts.ipynb b/examples/concepts.ipynb index b15a621..0e6b2eb 100644 --- a/examples/concepts.ipynb +++ b/examples/concepts.ipynb @@ -825,9 +825,11 @@ " f\"$ {pint.Unit(prop.unit):~#L} $\",\n", " prop.symbol,\n", " prop.description or \"\",\n", - " f\"`{'` `'.join(prop.evaluate.__code__.co_varnames)}`\"\n", - " if isinstance(prop, xplt.properties.DerivedProperty)\n", - " else \"\",\n", + " (\n", + " f\"`{'` `'.join(prop.evaluate.__code__.co_varnames)}`\"\n", + " if isinstance(prop, xplt.properties.DerivedProperty)\n", + " else \"\"\n", + " ),\n", " ]\n", " # https://github.com/jupyter-book/jupyter-book/issues/1501#issuecomment-2301641068\n", " display(Markdown(df.to_markdown()))\n",