cdleong commited on
Commit
d4c6874
·
verified ·
1 Parent(s): 83baedc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,7 +6,7 @@ import io
6
  import contextlib
7
  import requests
8
 
9
- FORBIDDEN_NAMES ={"Judas",
10
  "Maher-shalal-hash-baz",
11
  "Bathsheba",
12
  "Jephthah",
@@ -45,7 +45,7 @@ FORBIDDEN_NAMES ={"Judas",
45
  "Barabbas",
46
  "Sapphira",
47
  "Shur",
48
- }
49
  def download_file(url: str, dest_path: Path):
50
  if dest_path.exists():
51
  print(f"{dest_path.name} already exists. Skipping download.")
 
6
  import contextlib
7
  import requests
8
 
9
+ FORBIDDEN_NAMES =["Judas",
10
  "Maher-shalal-hash-baz",
11
  "Bathsheba",
12
  "Jephthah",
 
45
  "Barabbas",
46
  "Sapphira",
47
  "Shur",
48
+ ]
49
  def download_file(url: str, dest_path: Path):
50
  if dest_path.exists():
51
  print(f"{dest_path.name} already exists. Skipping download.")