remove debug code

This commit is contained in:
mulin.lyh
2024-07-12 16:38:59 +08:00
parent c3e5177d89
commit 044f9236f5

View File

@@ -258,7 +258,6 @@ def _snapshot_download(
]
for repo_file in repo_files:
print(repo_file)
if repo_file['Type'] == 'tree' or \
any([fnmatch.fnmatch(repo_file['Path'], pattern) for pattern in ignore_file_pattern]) or \
any([re.search(pattern, repo_file['Name']) is not None for pattern in ignore_regex_pattern]): # noqa E501