Skip to content

Commit 501bd62

Browse files
committed
remove debug output
1 parent d03eb08 commit 501bd62

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/fromager/commands/lint_requirements.py

-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ def lint_requirements(input_files_path: str) -> None:
2424
logger.error("path for requirements.txt or constraints.txt is missing")
2525
sys.exit(1)
2626

27-
print("Input files path: ", input_files_path)
28-
2927
# Get all the files to check in a list
3028
files_to_check = list(
3129
itertools.chain.from_iterable(glob.glob(path) for path in input_files_path)
@@ -39,7 +37,6 @@ def lint_requirements(input_files_path: str) -> None:
3937

4038
for file in files_to_check:
4139
parsed_lines = requirements_file.parse_requirements_file(file)
42-
print(parsed_lines)
4340
for line in parsed_lines:
4441
try:
4542
Requirement(line)

0 commit comments

Comments
 (0)