Skip to content

Commit

Permalink
impl: fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
AlesKus committed Dec 17, 2024
1 parent ae5eb81 commit d1cb853
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fprime/fpp/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ def _move_ut_templates(files_dir, generated_file_names):

# Move the generated files
for file_name in generated_file_names:
src_path = files_dir / file_name
dst_file_name = (
source_path = files_dir / file_name
destination_file_name = (
file_name.with_suffix(UT_TEMPLATE_FILE_SUFFIX + file_name.suffix)
if UT_TEMPLATE_FILE_SUFFIX not in file_name.suffixes
else file_name
)
dst_path = ut_path / dst_file_name
src_path.rename(dst_path)
destination_path = ut_path / destination_file_name
source_path.rename(destination_path)


def fpp_generate_implementation(
Expand Down

0 comments on commit d1cb853

Please sign in to comment.