Skip to content

Commit 8b45abf

Browse files
committed
Remove some debugging print statements
Signed-off-by: Chin Yeung Li <[email protected]>
1 parent 307e425 commit 8b45abf

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

src/attributecode/cmd.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,8 +430,6 @@ def attrib(input, output, api_url, api_key, scancode, min_license_score, referen
430430
api_url = api_url.strip("'").strip('"')
431431
api_key = api_key.strip("'").strip('"')
432432
license_dict, lic_errors = pre_process_and_fetch_license_dict(abouts, api_url, api_key, scancode, reference)
433-
print("1111111111111111111111111111")
434-
print(license_dict)
435433
errors.extend(lic_errors)
436434
sorted_license_dict = sorted(license_dict)
437435

src/attributecode/model.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,6 @@ def _validate(self, *args, **kwargs):
517517
location = posixpath.join(self.base_dir, normalized_arp)
518518
else:
519519
location = posixpath.normpath(posixpath.join(self.base_dir, path))
520-
print(location)
521520

522521
location = util.to_native(location)
523522
location = os.path.abspath(os.path.normpath(location))

src/attributecode/util.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,6 @@ def copy_license_notice_files(fields, base_dir, reference_dir, afp):
410410
from_lic_path = posixpath.join(to_posix(reference_dir), copy_file_name)
411411
about_file_dir = os.path.dirname(to_posix(afp)).lstrip('/')
412412
to_lic_path = posixpath.join(to_posix(base_dir), about_file_dir)
413-
print(to_lic_path)
414413
if not os.path.exists(posixpath.join(to_lic_path, copy_file_name)):
415414
err = copy_file(from_lic_path, to_lic_path)
416415
if err:

0 commit comments

Comments
 (0)