Skip to content

Commit af542c3

Browse files
committed
fix whitespace around =
1 parent 8fe13e4 commit af542c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bnd/pipeline/kilosort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def add_entry_to_metadata(filepath: Path, tag: str, value: str) -> None:
4545
# Write back without the dummy section
4646
with open(filepath, 'w') as f:
4747
for key, val in config.items('dummy_section'):
48-
f.write(f"{key} = {val}\n")
48+
f.write(f"{key}={val}\n")
4949

5050
def _read_probe_type(meta_file_path: str) -> str:
5151
meta = read_metadata(meta_file_path)

0 commit comments

Comments
 (0)