File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -303,8 +303,6 @@ def getAllLabels():
303303allChains = '/' .join (chainMap .keys ())
304304
305305if __name__ == "__main__" :
306- driver = webdriver .Chrome (service = ChromeService (
307- ChromeDriverManager ().install ()))
308306 targetChain = input ('Enter scan site of interest ({}): ' .format (allChains ))
309307
310308 if (targetChain not in chainMap ):
@@ -314,7 +312,10 @@ def getAllLabels():
314312 baseUrl = chainMap [targetChain ]['baseUrl' ]
315313 savePath = chainMap [targetChain ]['savePath' ]
316314
315+ driver = webdriver .Chrome (service = ChromeService (
316+ ChromeDriverManager ().install ()))
317317 login ()
318+
318319 retrievalType = input ('Enter retrieval type (single/all): ' )
319320 if (retrievalType == 'all' ):
320321 getAllLabels ()
You can’t perform that action at this time.
0 commit comments