tools/url-checker/url_checker.py [499:507]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if exclude_folders is None:
        exclude_folders = []
    
    # Convert exclude_folders to absolute paths for easier comparison
    abs_exclude_folders = []
    for folder in exclude_folders:
        if os.path.isabs(folder):
            abs_exclude_folders.append(os.path.normpath(folder))
        else:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tools/url-checker/url_checker.py [543:551]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if exclude_folders is None:
        exclude_folders = []
        
    # Convert exclude_folders to absolute paths for easier comparison
    abs_exclude_folders = []
    for folder in exclude_folders:
        if os.path.isabs(folder):
            abs_exclude_folders.append(os.path.normpath(folder))
        else:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



