D2KLab / py-sparql-transformer

Python version of SPARQL Transformer
https://d2klab.github.io/sparql-transformer/
Apache License 2.0
14 stars 4 forks source link

There is no trim() function in python #1

Closed larstonne closed 5 years ago

larstonne commented 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!

pasqLisena commented 5 years ago

Thank you @larstonne for having spotted it!