Skip to content

Commit

Permalink
fix #27, duplicate network metadata columns
Browse files Browse the repository at this point in the history
  • Loading branch information
kzuberi committed Feb 6, 2015
1 parent 0ae1a7d commit 0eb5db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/generate_network_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def main(inputfile, outputfile):
network_metadata['selected_name'] = network_metadata.apply(lambda row: name_selector(row), axis=1)

# take care of name collisions
groups = network_metadata.groupby(['group', 'selected_name'])
groups = network_metadata.groupby(['group', 'selected_name'], group_keys=False)
updated_network_metadata = groups.apply(deduper)

# write out update
Expand Down

0 comments on commit 0eb5db5

Please sign in to comment.