summaryrefslogtreecommitdiff
path: root/site_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'site_config.py')
-rw-r--r--site_config.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/site_config.py b/site_config.py
index 62c2b98..b09e735 100644
--- a/site_config.py
+++ b/site_config.py
@@ -97,9 +97,7 @@ def get_config():
network_netmask='255.255.255.0',
network_router_ip='10.0.0.1',
presence_location=Location.HOUSE,
- is_anyone_present=lambda x=Location.HOUSE: is_anyone_present_wrapper(
- x
- ),
+ is_anyone_present=lambda x=Location.HOUSE: is_anyone_present_wrapper(x),
arper_minimum_device_count=50,
)
elif location == 'CABIN':
@@ -110,9 +108,7 @@ def get_config():
network_netmask='255.255.255.0',
network_router_ip='192.168.0.1',
presence_location=Location.CABIN,
- is_anyone_present=lambda x=Location.CABIN: is_anyone_present_wrapper(
- x
- ),
+ is_anyone_present=lambda x=Location.CABIN: is_anyone_present_wrapper(x),
arper_minimum_device_count=15,
)
else: