From e0e70cc53929d1e66ff7c7f29560bbc931fe4216 Mon Sep 17 00:00:00 2001 From: Mathew Guest Date: Sun, 11 Jul 2021 18:51:54 -0600 Subject: [PATCH] changed quote style --- wabot/api.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wabot/api.py b/wabot/api.py index 90dd512..1984f54 100644 --- a/wabot/api.py +++ b/wabot/api.py @@ -26,19 +26,19 @@ class BrowserProxy: self._pickle_filename = pickle_filename LOGGER.info('creating selenium browser: session name = %s', session_name) try: - driver_type = "remote_chromium2" + driver_type = 'remote_chromium2' self.driver_type = driver_type print('session_name:', session_name) if phantom: pass - driver_type = "phantomjs" + # driver_type = "phantomjs" self.driver = self.get_driver(driver_type, session_name) if not self.driver: - LOGGER.error("failed to get selenium webdriver") + LOGGER.error('failed to get selenium webdriver') self.good = False return except Exception as ex: - print("caught exception at BrowserProxy().__init__") + print('caught exception at BrowserProxy().__init__') print(type(ex), ex) # self.page = nhsn_lo.pages.Login(self)