Skip to content

Commit

Permalink
disabled some linting
Browse files Browse the repository at this point in the history
  • Loading branch information
James Wood authored and James Wood committed Nov 7, 2024
1 parent 90a6878 commit fee14ca
Show file tree
Hide file tree
Showing 4 changed files with 189 additions and 199 deletions.
2 changes: 1 addition & 1 deletion podaac/merger/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def is_file_empty(parent_group: nc.Dataset | nc.Group) -> bool:
return True


def merge_netcdf_files(original_input_files: list[Path], # pylint: disable=too-many-locals
def merge_netcdf_files(original_input_files: list[Path], # pylint: disable=too-many-locals,too-many-positional-arguments
output_file: str,
granule_urls,
logger=getLogger(__name__),
Expand Down
1 change: 1 addition & 0 deletions podaac/merger/merge_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def max_var_memory(file_list: list[Path], var_info: dict, max_dims) -> int:
return max_var_mem


# pylint: disable=too-many-positional-arguments
def run_merge(merged_dataset: nc.Dataset,
file_list: list[Path],
var_info: dict,
Expand Down
1 change: 1 addition & 0 deletions podaac/merger/preprocess_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ def _run_worker(in_queue: Queue, results: list[dict]) -> None:
})


# pylint: disable=,too-many-positional-arguments
def process_groups(parent_group: nc.Dataset | nc.Group,
group_list: list,
max_dims: dict,
Expand Down
Loading

0 comments on commit fee14ca

Please sign in to comment.