Skip to content

Commit

Permalink
fix sonarcloud
Browse files Browse the repository at this point in the history
  • Loading branch information
CindyvdVries committed Aug 13, 2024
1 parent 421b9f3 commit effe5f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion decoimpact/business/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ def _generate_output_path(self, output_path_base, key):
partition_part = f"_{key}"
output_path = Path.joinpath(
output_path_base.parent,
f"{output_path_base.stem}{partition_part}" f"{output_path_base.suffix}",
f"{output_path_base.stem}{partition_part}{output_path_base.suffix}",
)
return output_path
2 changes: 1 addition & 1 deletion tests_acceptance/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def ignore_unknown(self, node):


SafeLoaderIgnoreUnknown.add_constructor(
None, SafeLoaderIgnoreUnknown.ignore_unknown # type: ignore
"!include", SafeLoaderIgnoreUnknown.ignore_unknown
)

parent_path = Path(__file__).parent
Expand Down

0 comments on commit effe5f8

Please sign in to comment.