mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 06:23:09 +02:00
pep8
This commit is contained in:
parent
2ed54d1782
commit
3de9c83787
1 changed files with 2 additions and 2 deletions
|
|
@ -188,8 +188,8 @@ def parse_comma_separated(tokens):
|
|||
|
||||
|
||||
HASH_REGEXPS = (
|
||||
(2, re.compile('^#([\da-f])([\da-f])([\da-f])$', re.I).match),
|
||||
(1, re.compile('^#([\da-f]{2})([\da-f]{2})([\da-f]{2})$', re.I).match),
|
||||
(2, re.compile(r'^#([\da-f])([\da-f])([\da-f])$', re.I).match),
|
||||
(1, re.compile(r'^#([\da-f]{2})([\da-f]{2})([\da-f]{2})$', re.I).match),
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue