Lint: E227 missing whitespace around bitwise or shift operator

This commit is contained in:
Joshua Boniface 2020-11-06 21:41:10 -05:00
parent 2eef6a1c21
commit 69858788c1
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ def isValidMAC(macaddr):
^([0-9A-F]{2}[:]){5}([0-9A-F]{2})$ ^([0-9A-F]{2}[:]){5}([0-9A-F]{2})$
) )
""", """,
re.VERBOSE|re.IGNORECASE) re.VERBOSE | re.IGNORECASE)
if allowed.match(macaddr): if allowed.match(macaddr):
return True return True

View File

@ -201,7 +201,7 @@ def isValidMAC(macaddr):
^([0-9A-F]{2}[:]){5}([0-9A-F]{2})$ ^([0-9A-F]{2}[:]){5}([0-9A-F]{2})$
) )
""", """,
re.VERBOSE|re.IGNORECASE) re.VERBOSE | re.IGNORECASE)
if allowed.match(macaddr): if allowed.match(macaddr):
return True return True