From 0d30b88b3bc73830eba70c97ac4772dc35e791a6 Mon Sep 17 00:00:00 2001 From: Matt Cai Date: Wed, 15 Apr 2020 16:45:09 -0700 Subject: [PATCH] fixed error due to too many characters in a line --- starfish/core/spots/DecodeSpots/trace_builders.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/starfish/core/spots/DecodeSpots/trace_builders.py b/starfish/core/spots/DecodeSpots/trace_builders.py index 4869cf11f..a41aa1a55 100644 --- a/starfish/core/spots/DecodeSpots/trace_builders.py +++ b/starfish/core/spots/DecodeSpots/trace_builders.py @@ -55,7 +55,8 @@ def build_traces_sequential(spot_results: SpotFindingResults, **kwargs) -> Inten """ - all_spots = pd.concat([sa.spot_attrs.data for sa in spot_results.values()], ignore_index=True, sort=True) + all_spots = pd.concat([sa.spot_attrs.data for sa in spot_results.values()], + ignore_index=True, sort=True) # reassign spot_ids to index number so they are unique all_spots['spot_id'] = all_spots.index