From c45391c4361e11d90f5d1d8592aa05e0624b2d92 Mon Sep 17 00:00:00 2001 From: Thomas Wade Date: Mon, 17 Sep 2018 23:58:49 +0930 Subject: [PATCH] Move comment for consistency --- scrape.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scrape.py b/scrape.py index 0eb328b..df40c72 100755 --- a/scrape.py +++ b/scrape.py @@ -23,7 +23,9 @@ print('NetworkX initialised') ##### Set up WebDriver with Chrome ########################## chrome_options = Options() -chrome_options.add_argument('--headless') # Start headless so we can run on a server overnight + +# Start headless so we can run on a server overnight +chrome_options.add_argument('--headless') # Disable image loading, courtesy of rocky qi # Found at https://stackoverflow.com/a/31581387, accessed on 2018/09/17 at 12:54 UTC