Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Additional debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarbuzzi committed Jul 2, 2024
1 parent 4354a4b commit 5c51990
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ def process(json_file_path: Path) -> Iterable[Type_Record_T]:

def main(args: argparse.Namespace) -> None:
input_directory = Path(args.input_directory)
print(f"{input_directory=}")
print(f"{'; '.join(item for item in input_directory.iterdir())}")

json_file_paths = list(input_directory.glob('*/*.json'))
print(f"{json_file_paths=}")
Expand Down

0 comments on commit 5c51990

Please sign in to comment.