Skip to content

Commit

Permalink
#154 remove input line
Browse files Browse the repository at this point in the history
  • Loading branch information
azamifard committed Mar 10, 2021
1 parent b08d57b commit c69aca7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion geospaas/nansat_ingestor/management/commands/ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ def handle(self, *args, **options):
"""
print("WARNING!!! nansat_ingestor app will be deprecated soon and no longer "
"accessible. Please use `LOCALHarvester` of geospaas harvesting package instead.")
input("Press Enter to continue...")
non_ingested_uris, n_points, nansat_options = self._get_args(*args, **options)

for non_ingested_uri in non_ingested_uris:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ class Command(IngestCommand):
def handle(self, *args, **options):
print("WARNING!!! nansat_ingestor app will be deprecated soon and no longer "
"accessible. Please use `LOCALHarvester` of geospaas harvesting package instead.")
input("Press Enter to continue...")
print('Searching netcdf files. May take some time...\n\n\n')
nc_uris = find_netcdf_uris(args[0])
num_nc_uris = len(nc_uris)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def add_arguments(self, parser):
def handle(self, *args, **options):
print("WARNING!!! nansat_ingestor app will be deprecated soon and no longer "
"accessible. Please use `LOCALHarvester` of geospaas harvesting package instead.")
input("Press Enter to continue...")
if not len(options['url']) == 1:
raise IOError('Please provide a url to the data')
url = options.pop('url')[0]
Expand Down

0 comments on commit c69aca7

Please sign in to comment.