Skip to content

Commit

Permalink
Fix debug print statement and update file path string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
haeussma committed Oct 25, 2024
1 parent 5aefff9 commit bfd7cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chromatopy/tools/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ def read_agilent(
try:
txt_path = next(directory.rglob("*.txt"))
print("sole path: ", txt_path)
print(f"all txt paths: {list(directory.rglob("*.txt"))}")
print(f"all txt paths: {list(directory.rglob('*.txt'))}")
print(f"everything: {directory.rglob('*')}")
try:
lines = AgilentRDLReader.read_file(str(txt_path))
Expand Down

0 comments on commit bfd7cb1

Please sign in to comment.