Skip to content

Commit

Permalink
style: reformat with black
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley authored and johnkit committed Apr 30, 2024
1 parent 1e070ca commit ffce418
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pan3d/catalogs/pangeo.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def get_all_entries():

def entry_filter_match(entry, filters):
for filter_key, selected_values in filters.items():
if filter_key == 'id':
if filter_key == "id":
# name is the unique identifier
filter_key = 'name'
filter_key = "name"
entry_value = entry.get(filter_key)
if entry_value is None:
return False
Expand Down

0 comments on commit ffce418

Please sign in to comment.