Skip to content

Commit

Permalink
Fix docstrings for frame reports (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdele committed Jan 25, 2021
1 parent 1b91326 commit 2754d2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bluepysnap/frame_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(self, frame_report, population_name):
"""Initializes a PopulationFrameReport object from a FrameReport.
Args:
frame_report (FrameReport): FrameReport containing this spike report population.
frame_report (FrameReport): FrameReport containing this frame report population.
population_name (str): the population name corresponding to this report.
Returns:
Expand Down Expand Up @@ -90,7 +90,7 @@ def get(self, group=None, t_start=None, t_stop=None):
"""Fetch data from the report.
Args:
group (None/int/list/np.array/dict): Get spikes filtered by group. See NodePopulation.
group (None/int/list/np.array/dict): Get frames filtered by group. See NodePopulation.
t_start (float): Include only frames occurring at or after this time.
t_stop (float): Include only frames occurring at or before this time.
Expand Down Expand Up @@ -135,7 +135,7 @@ def __init__(self, frame_report, group=None, t_start=None, t_stop=None):
Args:
frame_report (FrameReport): The FrameReport to filter.
group (None/int/list/np.array/dict): Get spikes filtered by group. See NodePopulation.
group (None/int/list/np.array/dict): Get frames filtered by group. See NodePopulation.
t_start (float): Include only frames occurring at or after this time.
t_stop (float): Include only frames occurring at or before this time.
Expand Down Expand Up @@ -272,7 +272,7 @@ def filter(self, group=None, t_start=None, t_stop=None):
from all the populations of a report.
Args:
group (None/int/list/np.array/dict): Get spikes filtered by group. See NodePopulation.
group (None/int/list/np.array/dict): Get frames filtered by group. See NodePopulation.
t_start (float): Include only frames occurring at or after this time.
t_stop (float): Include only frames occurring at or before this time.
Expand Down

0 comments on commit 2754d2b

Please sign in to comment.