Skip to content

Commit

Permalink
tiny fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marek Kokot committed Nov 6, 2024
1 parent f2eef10 commit 4371c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/splash.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def is_10x_or_visium():
for line2 in _10x_file:
line2 = line2.strip()
if line2 == "": continue
match = re.match(f"(\S+)\s*(.*)?", line2)
match = re.match(r"(\S+)\s*(.*)?", line2)

if not match:
print(f"Error: wrong line in file: {_10x_path}")
Expand Down

0 comments on commit 4371c2a

Please sign in to comment.