@@ -69,7 +69,7 @@ def parse_definition_nodes_from_codebase(
6969
7070
7171def parse_definition_nodes_from_file (file : str ) -> Dict [str , Set [str ]]:
72- """ See `parse_definition_nodes_from_codebase` """
72+ """See `parse_definition_nodes_from_codebase`"""
7373 with open (file ) as f :
7474 root = ast .parse (f .read (), file )
7575
@@ -116,7 +116,7 @@ def parse_import_nodes_from_file(
116116 source : str ,
117117 definition_map : Dict [str , Set [str ]],
118118) -> Set [str ]:
119- """ See `parse_import_nodes_from_codebase` """
119+ """See `parse_import_nodes_from_codebase`"""
120120 imports = _gather_import_nodes_from_file (file )
121121 paths = set ()
122122 for import_ in imports :
@@ -204,7 +204,7 @@ def parse_pytest_fixtures_from_codebase(
204204def parse_pytest_fixtures_from_file (
205205 file : str , definition_map : Dict [str , Set [str ]]
206206) -> Dict [str , Set [str ]]:
207- """ See `parse_pytest_fixtures_from_codebase` """
207+ """See `parse_pytest_fixtures_from_codebase`"""
208208 fixture_nodes = _gather_fixture_nodes_from_file (file )
209209
210210 # Parse the body of each fixture and find symbols.
@@ -296,7 +296,7 @@ def parse_pytest_tests_from_file(
296296 definition_map : Dict [str , Set [str ]],
297297 fixture_map : Dict [str , Set [str ]],
298298) -> Dict [str , Set [str ]]:
299- """ See `parse_pytest_tests_from_codebase` """
299+ """See `parse_pytest_tests_from_codebase`"""
300300 # Parse the test file's imports and create associations between source files and test files
301301 file_graph : DefaultDict [str , Set [str ]] = defaultdict (set )
302302 source_file_paths = parse_import_nodes_from_file (test_file , source , definition_map )
0 commit comments