Skip to content

Commit

Permalink
fix: not correct regular expression pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
Vsc0 authored and Midnighter committed Jul 31, 2018
1 parent 9ab50bc commit 0d4c423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cobra/io/mat.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


# precompiled regular expressions
_bracket_re = re.compile("r\[[a-z]\]$")
_bracket_re = re.compile(r"\[[a-z]\]$")
_underscore_re = re.compile(r"_[a-z]$")


Expand Down

0 comments on commit 0d4c423

Please sign in to comment.