Skip to content

Commit

Permalink
Updated GUI to allow None for max_channel_distance
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobpennington committed Apr 13, 2024
1 parent 9623798 commit 82f82ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kilosort/gui/settings_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def check_settings(self):
if not self.check_valid_binary_path(self.data_file_path):
return False

none_allowed = ['dmin', 'nt0min']
none_allowed = ['dmin', 'nt0min', 'max_channel_distance']
for k, v in self.settings.items():
if v is None and k not in none_allowed:
return False
Expand Down

0 comments on commit 82f82ec

Please sign in to comment.