diff --git a/tetras_extraction/script/src/extract.py b/tetras_extraction/script/src/extract.py index f2f90abc47fde79bed008be6e126a849ca5feab1..ff66cc02af218f1bf880b1f165118124f0267dd5 100644 --- a/tetras_extraction/script/src/extract.py +++ b/tetras_extraction/script/src/extract.py @@ -1,5 +1,3 @@ -import filecmp - from lxml import etree from rdflib import RDFS, Graph, Literal, URIRef from rdflib.namespace import OWL, RDF @@ -146,14 +144,6 @@ def is_subsection(id: str): ) -def compare_files(f1: str, f2: str): - log.info( - "Files {} and {} {}.".format( - f1, f2, "are identical" if filecmp.cmp(f1, f2) else "differ" - ) - ) - - def main(): g = create_graph()