Move comment for consistency

This commit is contained in:
Thomas Wade 2018-09-17 23:58:49 +09:30
parent 7cb2e2a2ff
commit c45391c436

View File

@ -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