From d705877c61e965bbff0879fd26b52fb9eac73e49 Mon Sep 17 00:00:00 2001 From: Megan Davidson Date: Wed, 20 Jul 2022 13:43:05 +1200 Subject: [PATCH] fix: fix rebase error --- scripts/gdal_helper.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/gdal_helper.py b/scripts/gdal_helper.py index 64000c266..97a4c85a0 100644 --- a/scripts/gdal_helper.py +++ b/scripts/gdal_helper.py @@ -1,6 +1,6 @@ import os import subprocess -from typing import List +from typing import List, Optional from aws_helper import get_bucket_name_from_path, get_credentials, is_s3 from linz_logger import get_log @@ -34,7 +34,6 @@ def run_gdal( command: List[str], input_file: Optional[str] = None, output_file: Optional[str] = None, - input_file_index: Optional[int] = None, ) -> "subprocess.CompletedProcess[bytes]": """Run the GDAL command. The permissions to access to the input file are applied to the gdal environment.