Skip to content

Commit

Permalink
Small update to add unused arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhamer-noaa committed Dec 12, 2024
1 parent dedbc45 commit de06de3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/idsse_common/idsse/common/http_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,14 @@ def ls(self, path: str, prepend_path: bool = True) -> Sequence[str]:
return files


def cp(self, path: str, dest: str) -> bool:
def cp(self, path: str, dest: str, concurrency: int | None = None, chunk_size: int | None = None) -> bool:
"""Execute http request download from path to dest.
Args:
path (str): Path to the object to be copied
dest (str): The destination location
concurrency (optional, int): Number of parallel threads - ignored
chunk_size (optional, int): Size of chunks (in MB) - ignored
Returns:
bool: Returns True if copy is successful
"""
Expand Down

0 comments on commit de06de3

Please sign in to comment.