Skip to content

Commit

Permalink
Adding removal of file after being used
Browse files Browse the repository at this point in the history
  • Loading branch information
Vagoasdf committed Aug 26, 2024
1 parent 5310cf2 commit 511696b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import hashlib
import json
import shutil
import os
from typing import Any, Dict, List, Optional

from xml.etree.ElementTree import Element
Expand Down Expand Up @@ -114,6 +115,8 @@ def microsoft_advertising_user_delete(
account_id,
)

os.remove(csv_file)

rows_updated += 1

return rows_updated
Expand Down

0 comments on commit 511696b

Please sign in to comment.