Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
zmoon committed Oct 7, 2024
1 parent fab2320 commit a3dfe78
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions monetio/sat/_omps_nadir_mm.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ def read_OMPS_nm(files):
count += 1
else:
data_array = xr.concat([data_array, data], "x")
else: # using local files
if isinstance(files,str): # expansion of filestring to list
else: # using local files
if isinstance(files, str): # expansion of filestring to list
filelist = sorted(glob(files, recursive=False))
else: # ensure provided filelist is sorted
filelist = sorted(files) # assume list
for filename in filelist: #extract data
else: # ensure provided filelist is sorted
filelist = sorted(files) # assume list
for filename in filelist: # extract data
try:
data = extract_OMPS_nm(filename)
if count == 0:
Expand Down

0 comments on commit a3dfe78

Please sign in to comment.