Skip to content

Commit

Permalink
refactor to match audio
Browse files Browse the repository at this point in the history
  • Loading branch information
pmhalvor committed Sep 18, 2024
1 parent 9adb900 commit fbf33f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pipeline/stages/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def process(self, element):
end = self._preprocess_date(element.get('end'))

geometry_file = self._get_geometry_file()
export_file = self._get_export_file(start, end)
export_file = self._get_export_path(start, end)

species = config.search.species

Expand All @@ -45,7 +45,7 @@ def _get_geometry_file(self):
return io.BytesIO(filesystems.FileSystems.open(geometry_filename).read())


def _get_export_file(self, start, end):
def _get_export_path(self, start, end):
filename = config.search.filename

export_filename = config.search.export_template.format(
Expand Down

0 comments on commit fbf33f0

Please sign in to comment.