RDFLib / OWL-RL

A simple implementation of the OWL2 RL Profile on top of RDFLib: it expands the graph with all possible triples that OWL RL defines. It can be used together with RDFLib to expand an RDFLib Graph object, or as a stand alone service with its own serialization.
http://www.ivan-herman.net/Misc/2008/owlrl/
Other
139 stars 30 forks source link

Drop the default encoding of the owlrl script #32

Closed wrobell closed 5 years ago

wrobell commented 5 years ago

The script requires Python 3 and the default is UTF-8. More at

https://www.python.org/dev/peps/pep-3120/
wrobell commented 5 years ago

Do you mind if I ask maintainers to review this pull request?

ashleysommer commented 5 years ago

@wrobell You're right, the default is utf-8. so the header statement is redundant.

But I don't think its hurting anything having it there. I always put that at the top of every python file I write as boilerplate.

I will accept this PR, but I don't think removing it will achieve anything or have any effect except making the script one line shorter.