Skip to content
Snippets Groups Projects
Commit 04ea8921 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

make parameter names match

parent 1572e795
No related branches found
No related tags found
Loading
Pipeline #9887 passed
......@@ -36,11 +36,13 @@ from .interfaces import RowSet, Table, RowWriter
from .row_writer import (
PostgresCopyRowWriter,
TopologicallySortingRowWriter,
UniquifyingRowWriter, DictionaryKeeper,
UniquifyingRowWriter,
DictionaryKeeper,
)
# pylint: disable=C0103, E0402, R0201, R0903
# stolen shamelessly from aat_wrest
class MDDBConnector:
"""Use this connection to interrogate this science product locator"""
......@@ -129,7 +131,7 @@ class CoreSampler:
# the first time through, we select from the projects table and get that row
projects = self.table("science_products")
requested = projects.fetch({"science_product_locator": science_product_locator})
requested = projects.fetch({"science_product_locator": product_locator})
self.save(requested)
self.writer.close()
return self.writer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment