From 69858788c19a11be9c09fcc623fbe83a2860c5ba Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 6 Nov 2020 21:41:10 -0500 Subject: [PATCH] Lint: E227 missing whitespace around bitwise or shift operator --- client-cli/cli_lib/network.py | 2 +- daemon-common/network.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client-cli/cli_lib/network.py b/client-cli/cli_lib/network.py index df375ce7..e61ba4f4 100644 --- a/client-cli/cli_lib/network.py +++ b/client-cli/cli_lib/network.py @@ -29,7 +29,7 @@ def isValidMAC(macaddr): ^([0-9A-F]{2}[:]){5}([0-9A-F]{2})$ ) """, - re.VERBOSE|re.IGNORECASE) + re.VERBOSE | re.IGNORECASE) if allowed.match(macaddr): return True diff --git a/daemon-common/network.py b/daemon-common/network.py index 68f2f1c7..24f9ada0 100644 --- a/daemon-common/network.py +++ b/daemon-common/network.py @@ -201,7 +201,7 @@ def isValidMAC(macaddr): ^([0-9A-F]{2}[:]){5}([0-9A-F]{2})$ ) """, - re.VERBOSE|re.IGNORECASE) + re.VERBOSE | re.IGNORECASE) if allowed.match(macaddr): return True