Skip to content
Snippets Groups Projects
Commit adc4dcbf authored by Malte Schokolowski's avatar Malte Schokolowski
Browse files
parents 261601c9 e17c7179
No related branches found
No related tags found
1 merge request!11merge verarbeitung to main repo
No preview for this file type
No preview for this file type
No preview for this file type
import sys
sys.path.append("../")
from input.publication import Publication
class Publication:
def __init__(self, doi_url, title, contributors, journal, publication_date, references, citations, group):
self.doi_url = doi_url
......@@ -35,7 +41,7 @@ class Reference:
def input_test_func(pub_doi):
for array in list_of_arrays:
if pub_doi == array[0]:
pub = Publication(array[0], array[1], array[2], array[3], array[4], array[5], array[6], array[7])
pub = Publication(array[0], array[1], array[2], array[3], array[4], array[5], array[6], array[7], array[8])
return pub
......
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