Commit ee8615d4 authored by JunHyung An's avatar JunHyung An
Browse files

Fixed W0718

parent 83a8e8b9
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -8,3 +8,7 @@ disable=R0902, R0913, R0915, R0917
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=250

[BASIC]
# https://github.com/pylint-dev/pylint/issues/1236#issuecomment-438997486
good-names=i, e, logger
+2 −2
Original line number Diff line number Diff line
@@ -279,7 +279,7 @@ class MultipleTest(unittest.TestCase):
        start_time = time.time()
        try:
            action_func(driver, *args, **kwargs)
        except Exception as e:
        except (NoSuchElementException, TimeoutException) as e:
            print(f"Session {driver.instance_number}, Action {action_name} failed: {e}")
        finally:
            end_time = time.time()
@@ -455,7 +455,7 @@ class MultipleTest(unittest.TestCase):
        for driver in self.drivers:
            try:
                driver.quit()
            except Exception as e:
            except TimeoutException as e:
                print(f"Error quitting driver: {e}")
        self.assertEqual([], self.verification_errors)