Skip to content

Commit

Permalink
Update src/hyp3_isce2/insar_tops_multi_burst.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jake Herrmann <[email protected]>
  • Loading branch information
AndrewPlayer3 and jtherrmann authored Aug 19, 2024
1 parent 4fcb09d commit fef1dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyp3_isce2/insar_tops_multi_burst.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def main():
references = [item for sublist in args.reference for item in sublist]
secondaries = [item for sublist in args.secondary for item in sublist]

if (len(references) < 1 or len(secondaries) < 1):
if len(references) < 1 or len(secondaries) < 1:
parser.error("Must include at least 1 reference and 1 secondary")
if (len(references) != len(secondaries)):
parser.error("Must have the same number of references and secondaries")
Expand Down

0 comments on commit fef1dcb

Please sign in to comment.