Skip to content

Commit

Permalink
STY: Apply ruff/refurb rule FURB167
Browse files Browse the repository at this point in the history
FURB167 Use of regular expression alias
  • Loading branch information
DimitriPapadopoulos committed Sep 22, 2024
1 parent 4c216b1 commit d53b64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nibabel/nicom/ascconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

ASCCONV_RE = re.compile(
r'### ASCCONV BEGIN((?:\s*[^=\s]+=[^=\s]+)*) ###\n(.*?)\n### ASCCONV END ###',
flags=re.M | re.S,
flags=re.MULTILINE | re.DOTALL,
)


Expand Down

0 comments on commit d53b64c

Please sign in to comment.