SYMBOL INDEX (24 symbols across 7 files) FILE: flake8_eradicate.py class Checker (line 26) | class Checker(object): method __init__ (line 36) | def __init__( method add_options (line 73) | def add_options(cls, parser: OptionManager) -> None: method parse_options (line 120) | def parse_options(cls, options) -> None: method run (line 124) | def run(self) -> Iterator[Tuple[int, int, str, Type['Checker']]]: method _lines_with_commented_out_code (line 129) | def _lines_with_commented_out_code(self) -> Iterable[int]: FILE: tests/conftest.py function absolute_path (line 9) | def absolute_path(): function get_file_tokens (line 18) | def get_file_tokens(): function get_file_lines (line 27) | def get_file_lines(): FILE: tests/fixtures/correct.py class Some (line 14) | class Some(object): method some_method (line 31) | def some_method(self) -> None: function some_function (line 39) | def some_function(): FILE: tests/fixtures/correct_no_comment.py class Some (line 1) | class Some(object): method some_method (line 7) | def some_method(self) -> None: function some_function (line 13) | def some_function(): FILE: tests/fixtures/incorrect.py class Some (line 2) | class Some(object): FILE: tests/test_comments.py function test_correct_fixture (line 7) | def test_correct_fixture(absolute_path): function test_incorrect_fixture (line 27) | def test_incorrect_fixture(absolute_path): function test_incorrect_fixture_aggressive (line 49) | def test_incorrect_fixture_aggressive(absolute_path): function test_incorrect_fixture_whitelist (line 73) | def test_incorrect_fixture_whitelist(absolute_path): function test_incorrect_fixture_whitelist_extend (line 99) | def test_incorrect_fixture_whitelist_extend(absolute_path): function test_lines_with_commented_out_code_incorrect_fixture_output (line 124) | def test_lines_with_commented_out_code_incorrect_fixture_output( function test_lines_with_commented_out_code_file_no_comment (line 151) | def test_lines_with_commented_out_code_file_no_comment( FILE: tests/test_version.py function test_call_flake8_version (line 6) | def test_call_flake8_version():