From e5432208556d2cbe619b4f63b184c42e7bbff921 Mon Sep 17 00:00:00 2001 From: rly Date: Sat, 1 Jun 2024 02:44:53 -0700 Subject: [PATCH] Fix lint --- pyproject.toml | 1 + src/spec/create_extension_spec.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 01bfd0d..cce6c69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -116,6 +116,7 @@ line-length = 120 "src/pynwb/ndx_extracellular_channels/__init__.py" = ["E402", "F401"] "src/spec/create_extension_spec.py" = ["T201"] "src/pynwb/tests/test_example_usage_all.py" = ["T201"] +"src/pynwb/tests/test_example_usage_probeinterface.py" = ["T201"] [tool.ruff.mccabe] max-complexity = 17 diff --git a/src/spec/create_extension_spec.py b/src/spec/create_extension_spec.py index 2ce70f7..4a89214 100644 --- a/src/spec/create_extension_spec.py +++ b/src/spec/create_extension_spec.py @@ -171,7 +171,7 @@ def main(): name="planar_contour_in_um", # TODO should this just be "contour"? doc=("The coordinates of the nodes of the polygon that describe the shape (contour) of the probe, " "in micrometers. The first and last points are connected to close the polygon. " - "e.g., [(-20., -30.), (20., -110.), (60., -30.), (60., 190.), (-20., 190.)]." + "e.g., [(-20., -30.), (20., -110.), (60., -30.), (60., 190.), (-20., 190.)]." "See 'probe_planar_contour' in " "https://probeinterface.readthedocs.io/en/main/format_spec.html for more details."), dtype="float",