Skip to content

Commit

Permalink
format as posix
Browse files Browse the repository at this point in the history
  • Loading branch information
philbucher committed Dec 20, 2023
1 parent 4225365 commit 327d515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kratos/python_scripts/testing/ci_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def are_only_python_files_changed() -> bool:

def print_ci_information() -> None:
"""This function prints an overview of the CI related information"""
pprint(f"{sorted(map(str,changed_files()))=}")
pprint(f"{sorted(ci_applications())=}")
pprint(sorted(map(lambda p : p.as_posix(), changed_files())))
pprint(sorted(ci_applications()))
print(f"{sorted(get_changed_files_extensions())=}")
print(f"{are_only_python_files_changed()=}")
print(f"{sorted(get_changed_applications())=}")
Expand Down

0 comments on commit 327d515

Please sign in to comment.