Skip to content

Commit

Permalink
add self arg
Browse files Browse the repository at this point in the history
  • Loading branch information
btylerburton committed Jan 17, 2024
1 parent 7ae6447 commit 107c265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harvester/harvest.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def status(self, value):
self._status = value

# ckanify methods
def create_ckan_extra_base(*args) -> dict:
def create_ckan_extra_base(self, *args) -> dict:
keys = ["publisher_hierarchy", "resource-type", "publisher"]
data = zip(keys, args)
return [{"key": d[0], "value": d[1]} for d in data]
Expand Down

0 comments on commit 107c265

Please sign in to comment.