python linting: whitespace before ':' (E203)

Signed-off-by: bcambl <blayne@blaynecampbell.com>
This commit is contained in:
bcambl 2018-07-03 00:21:57 -06:00
parent c3d443aaff
commit 9bd4986781

View file

@ -2,11 +2,11 @@ import pytest
from textwrap import dedent from textwrap import dedent
SETUPVARS = { SETUPVARS = {
'PIHOLE_INTERFACE' : 'eth99', 'PIHOLE_INTERFACE': 'eth99',
'IPV4_ADDRESS' : '1.1.1.1', 'IPV4_ADDRESS': '1.1.1.1',
'IPV6_ADDRESS' : 'FE80::240:D0FF:FE48:4672', 'IPV6_ADDRESS': 'FE80::240:D0FF:FE48:4672',
'PIHOLE_DNS_1' : '4.2.2.1', 'PIHOLE_DNS_1': '4.2.2.1',
'PIHOLE_DNS_2' : '4.2.2.2' 'PIHOLE_DNS_2': '4.2.2.2'
} }
tick_box="[\x1b[1;32m\xe2\x9c\x93\x1b[0m]".decode("utf-8") tick_box="[\x1b[1;32m\xe2\x9c\x93\x1b[0m]".decode("utf-8")