Closed larstonne closed 5 years ago
wheres = [w.trim() for w in wheres]
must be
wheres = [w.strip() for w in wheres]
in line 127 SPARQLTransformer.py
apart from that nice job!
Thank you @larstonne for having spotted it!
wheres = [w.trim() for w in wheres]
must be
wheres = [w.strip() for w in wheres]
in line 127 SPARQLTransformer.py
apart from that nice job!