Last analyzed a653e4d 6 months ago
Default analysis branch is
Currently analyzing run
Function contains unused argument PYL-W0613
Anti-pattern
6 months ago6 months old
Unused argument 'method'
16        self.driver = webdriver.Chrome()
17        self.vars = {}
18
19    def teardown_method(self, method):20        self.driver.quit()
21
22    def test_checkbox(self):
Unused argument 'method'
12
13
14class TestCheckbox():
15    def setup_method(self, method):16        self.driver = webdriver.Chrome()
17        self.vars = {}
18