From 919f897b3cc3e3a5345bb1bda01f17ff162e829b Mon Sep 17 00:00:00 2001 From: Tanner Stokes Date: Tue, 25 Jan 2022 18:51:52 -0500 Subject: [PATCH] Config sample formatting. --- config_sample.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config_sample.py b/config_sample.py index 8d2e775..43d21d4 100644 --- a/config_sample.py +++ b/config_sample.py @@ -2,11 +2,11 @@ Parameters for the modem scraper. """ scraper_config = { - 'modem_model' '', # POPULATE MODEM MODEL HERE + 'modem_model': '', # POPULATE MODEM MODEL HERE 'modem_url': '', # POPULATE MODEM URL HERE 'max_retries': 5, - 'poll_interval_seconds': 30 - 'outputter' : 'influxdb' # Output to influxdb or print + 'poll_interval_seconds': 30, + 'outputter': 'influxdb' # Output to influxdb or print } """