Skip to content

Commit

Permalink
remove wildcard from realm_regex def
Browse files Browse the repository at this point in the history
  • Loading branch information
wrongkindofdoctor authored Jan 27, 2025
1 parent 26a4c69 commit ea4557e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def set_date_range(self, startdate: str, enddate: str):
self.date_range = util.DateRange(start=startdate, end=enddate)

def set_query(self, var: varlist_util.VarlistEntry, path_regex: str):
realm_regex = var.realm + '*'
realm_regex = var.realm
date_range = var.T.range
var_id = var.name
standard_name = var.standard_name
Expand Down

0 comments on commit ea4557e

Please sign in to comment.