Skip to content

Commit

Permalink
Remove type hint for py38 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
rly committed Nov 12, 2024
1 parent 2b2ae62 commit b1aacc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pynwb/ndx_events/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def __init__(self, **kwargs):
super().__init__(**kwargs)
self.events = events

def merge_events_tables(self, tables: list[EventsTable]):
def merge_events_tables(self, tables): # tables: list[EventsTable]
return pd.concat([table.to_dataframe().set_index("timestamp") for table in tables], sort=True)

def get_all_events(self):
Expand Down

0 comments on commit b1aacc5

Please sign in to comment.