Skip to content

Commit

Permalink
Update base.py
Browse files Browse the repository at this point in the history
Fixed comment line too long.
  • Loading branch information
lshaheen authored Apr 6, 2021
1 parent f708529 commit 268eab5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion phy/apps/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,8 @@ def _amplitude_getter(self, cluster_ids, name=None, load_all=False):
channel_id = channel_ids[0]
# All clusters appearing on the first cluster's peak channel.
other_clusters = self.get_clusters_on_channel(channel_id)
# Remove slected clusters from other_clusters to prevent them from being included in grey dots/histogram
# Remove selected clusters from other_clusters to prevent them from being included
# in both the grey dots and grey histogram
other_clusters = [e for e in other_clusters if e not in cluster_ids]
# Get the amplitude method.
f = self._get_amplitude_functions()[name]
Expand Down

0 comments on commit 268eab5

Please sign in to comment.