From d9aa383bfded6ec8bd6792b2d45664d4108786ab Mon Sep 17 00:00:00 2001 From: jh-206 Date: Thu, 22 Aug 2024 10:19:51 -0600 Subject: [PATCH] BUG FIX: add needed imports to utils --- fmda/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fmda/utils.py b/fmda/utils.py index 779eb24..887c027 100644 --- a/fmda/utils.py +++ b/fmda/utils.py @@ -10,6 +10,8 @@ import yaml import hashlib import pickle import os.path as osp +from urllib.parse import urlparse +import subprocess # Utility to retrieve files from URL def retrieve_url(url, dest_path, force_download=False): -- 2.11.4.GIT