Skip to content

Failed to merge event from search_breaks generator #1

Description

@mgchav

Hello!

The data method of CoreEventDataFrame is typed as a pandas DataFrame, and the output of search breaks is a pandas.Series.
On line 498 of eventsearch\events.py, the two are attempting to merge with:

self.data = self.data.append(event, ignore_index)

A pandas dataframe does not have an append method. Would a suitable fix be:

self.data = self.data.join(event)

Thanks

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions