albertvillanova HF staff commited on
Commit
ca293bc
·
verified ·
1 Parent(s): 523fad9

Delete debugging prints

Browse files
Files changed (1) hide show
  1. src/hub.py +0 -2
src/hub.py CHANGED
@@ -33,8 +33,6 @@ async def load_jsonlines_file(path):
33
  def to_url(path):
34
  *repo_type, org_name, ds_name, filename = path.split("/", 3)
35
  repo_type = repo_type[0][:-1] if repo_type else None
36
- print(path)
37
- print(repo_type, org_name, ds_name, filename)
38
  return hf_hub_url(repo_id=f"{org_name}/{ds_name}", filename=filename, repo_type=repo_type)
39
 
40
 
 
33
  def to_url(path):
34
  *repo_type, org_name, ds_name, filename = path.split("/", 3)
35
  repo_type = repo_type[0][:-1] if repo_type else None
 
 
36
  return hf_hub_url(repo_id=f"{org_name}/{ds_name}", filename=filename, repo_type=repo_type)
37
 
38