Skip to content

Commit c2480cb

Browse files
committed
remove print statements to show path length, used for troubleshooting
1 parent 0317a27 commit c2480cb

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/neonutilities/helper_mods/api_helpers.py

-4
Original file line numberDiff line numberDiff line change
@@ -547,8 +547,6 @@ def download_urls(url_set,
547547
while j < 3:
548548
try:
549549
with open(outpath+url_set["flnm"][i], "wb") as out_file:
550-
print('length outfile:', len(
551-
outpath+url_set["flnm"][i]))
552550
content = requests.get(url_set["z"][i], stream=True,
553551
headers={"accept": "application/json",
554552
"User-Agent": usera},
@@ -566,8 +564,6 @@ def download_urls(url_set,
566564
while j < 3:
567565
try:
568566
with open(outpath+url_set["flnm"][i], "wb") as out_file:
569-
print('length outfile:', len(
570-
outpath+url_set["flnm"][i]))
571567
content = requests.get(url_set["z"][i], stream=True,
572568
headers={"X-API-TOKEN": token,
573569
"accept": "application/json",

0 commit comments

Comments
 (0)