Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/refactor_root' into feature/conf…
Browse files Browse the repository at this point in the history
…ig_to_pyproject_GSI-544
  • Loading branch information
KerstenBreuer committed Dec 18, 2023
2 parents 210b94a + 19c6048 commit 5250e98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions scripts/license_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
".mypy.ini",
".pytest_cache",
".editorconfig",
".template/.static_files",
".template/.static_files_ignore",
".template/.mandatory_files",
".template/.mandatory_files_ignore",
".template/.deprecated_files",
".template/.deprecated_files_ignore",
".template/.static_files.txt",
".template/.static_files_ignore.txt",
".template/.mandatory_files.txt",
".template/.mandatory_files_ignore.txt",
".template/.deprecated_files.txt",
".template/.deprecated_files_ignore.txt",
]

# exclude file by file ending from license header check:
Expand Down
2 changes: 1 addition & 1 deletion scripts/update_template_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class ValidationError(RuntimeError):

def get_file_list_path(list_name: str, relative: bool = False) -> Path:
"""Get the path to the file list of the given name."""
return Path(REPO_ROOT_DIR / FILE_LIST_DIR_NAME / f"{list_name}")
return Path(REPO_ROOT_DIR / FILE_LIST_DIR_NAME / f"{list_name}.txt")


def get_file_list(list_name: str) -> list[str]:
Expand Down

0 comments on commit 5250e98

Please sign in to comment.