From 2adfaa0a88b471a3583d9b8ba324eb8ec48c4100 Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Tue, 20 Oct 2020 16:31:39 -0700 Subject: [PATCH] Update example --- README.md | 2 +- src/pynwb/tests/test_example_usage.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5d58c04..851af82 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ annotated_events = AnnotatedEventsTable( # add a custom indexed (ragged) column to represent whether each event time was a bad event annotated_events.add_column( name='bad_event', - description='extra metadata for each event type', + description='whether each event time should be excluded', index=True ) # add an event type (row) to the AnnotatedEventsTable instance diff --git a/src/pynwb/tests/test_example_usage.py b/src/pynwb/tests/test_example_usage.py index 901f495..d0bf64f 100644 --- a/src/pynwb/tests/test_example_usage.py +++ b/src/pynwb/tests/test_example_usage.py @@ -32,7 +32,7 @@ def test_example_usage(): # add a custom indexed (ragged) column to represent whether each event time was a bad event annotated_events.add_column( name='bad_event', - description='extra metadata for each event type', + description='whether each event time should be excluded', index=True ) # add an event type (row) to the AnnotatedEventsTable instance