Skip to content

Commit

Permalink
Skeleton.radius: remove trailing comma from return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Aug 6, 2024
1 parent ea896c5 commit 249ac8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skeletor/skeletonize/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def radius(self):
if 'radius' not in self.swc.columns:
raise ValueError('No radius info found. Run `skeletor.post.radii()`'
' to get them.')
return self.swc['radius'].values,
return self.swc['radius'].values

@property
def skeleton(self):
Expand Down

0 comments on commit 249ac8c

Please sign in to comment.