mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
python linting: whitespace before ':' (E203)
Signed-off-by: bcambl <blayne@blaynecampbell.com>
This commit is contained in:
parent
c3d443aaff
commit
9bd4986781
1 changed files with 5 additions and 5 deletions
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue