Skip to content

Commit

Permalink
Remove lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tsgolden committed Feb 14, 2025
1 parent 9bee062 commit 7715cde
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gutils/nc.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,6 +765,7 @@ def process_folder(deployment_path, mode, merger_class=SlocumMerger, reader_clas

print([ res.get() for res in multiple_results ])


def process_folder_arg_parser():
parser = argparse.ArgumentParser(
description='Parses a deployment folder of binary files into a set of '
Expand Down Expand Up @@ -859,6 +860,7 @@ def process_folder_arg_parser():

return parser


def main_process_folder():

parser = process_folder_arg_parser()
Expand Down Expand Up @@ -900,6 +902,7 @@ def main_process_folder():
**filter_args
)


def check_folder_arg_parser():
parser = argparse.ArgumentParser(
description='Verifies that a folder of glider NetCDF files from a provider '
Expand Down Expand Up @@ -931,13 +934,16 @@ def check_folder_arg_parser():
)
return parser


class CheckDatasetArgs:
def __init__(self, file):
self.file = file


def create_check_dataset_args(file):
return CheckDatasetArgs(file)


def main_check_folder():
from multiprocessing import Pool

Expand Down

0 comments on commit 7715cde

Please sign in to comment.