Skip to content

Commit 4e79413

Browse files
fix
1 parent b835bc8 commit 4e79413

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pysonar_scanner/configuration/coveragerc_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __read_config(config_file_path: pathlib.Path) -> dict[str, Any]:
6565
def __read_coverage_exclusions_properties(
6666
config_file_path: pathlib.Path, coverage_properties: dict[str, Any]
6767
) -> dict[str, Any]:
68-
result_dict = {}
68+
result_dict: dict[str, Any] = {}
6969
if "run" not in coverage_properties:
7070
logging.debug(f"The run key was not found in {config_file_path}")
7171
return result_dict

0 commit comments

Comments
 (0)