Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ehavazli committed Nov 5, 2024
1 parent cde446b commit 8715152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mintpy/prep_aria.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ def load_aria(inps):
}
meta['FILE_TYPE'] = 'ifgramStack'

layer_name, layer_type = get_correction_layer(inps.ionoFile)
layer_name, _ = get_correction_layer(inps.ionoFile)

if run_or_skip(inps, ds_name_dict, out_file=inps.outfile[0]) == 'run':
outname = f'{out_dir}/ionStack.h5'
Expand Down Expand Up @@ -685,7 +685,7 @@ def load_aria(inps):
for layer in correction_layers:
if layer:
# get name and type
layer_name, layer_type = get_correction_layer(layer)
layer_name, _ = get_correction_layer(layer)
num_dates = get_number_of_epochs(layer)

meta['FILE_TYPE'] = 'timeseries'
Expand Down

0 comments on commit 8715152

Please sign in to comment.