Skip to content

Commit 320353c

Browse files
authored
Merge pull request #147 from phaverty-ginkgo/suppress_regex_warning
fix: Suppress warning about invalid escape sequence
2 parents 9c6d83e + 6fca8aa commit 320353c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gff/BCBio/GFF/GFFParser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _merge_keyvals(parts):
6868
out.append(p)
6969
return out
7070

71-
gff3_kw_pat = re.compile("\w+=")
71+
gff3_kw_pat = re.compile(r"\w+=")
7272
def _split_keyvals(keyval_str):
7373
"""Split key-value pairs in a GFF2, GTF and GFF3 compatible way.
7474

0 commit comments

Comments
 (0)