Unverified Commit 9fc28a27 authored by jlaura's avatar jlaura Committed by GitHub
Browse files

Fixes costs to work within the session (#489)

parent 6b88f7f7
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -811,7 +811,6 @@ class NetworkEdge(Edge):
                df = pd.DataFrame.from_records(costs).T  # From records is important because from_dict drops rows with empty dicts
            else:
                df = pd.DataFrame(index=ids)

        df.index.name = 'match_id'
        return DbDataFrame(df, parent=self, name='costs')