diff options
author | Nicholas Car <nicholas.car@surroundaustralia.com> | 2020-05-16 20:57:03 +1000 |
---|---|---|
committer | Nicholas Car <nicholas.car@surroundaustralia.com> | 2020-05-16 20:57:03 +1000 |
commit | 2a8d70824e1b4caf0c606074a44ac3a15fa72718 (patch) | |
tree | f593b5973442ce80d91dbc9eea316cb54db52eb3 /examples/film.py | |
parent | 6197531775801c61a620c8094327d145516a5ed7 (diff) | |
download | rdflib-2a8d70824e1b4caf0c606074a44ac3a15fa72718.tar.gz |
removal of all uses of package six
Diffstat (limited to 'examples/film.py')
-rw-r--r-- | examples/film.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/film.py b/examples/film.py index fe626c08..fd4157c4 100644 --- a/examples/film.py +++ b/examples/film.py @@ -35,7 +35,7 @@ except ImportError: from rdflib import BNode, ConjunctiveGraph, URIRef, Literal, Namespace, RDF from rdflib.namespace import FOAF, DC -from six.moves import input +from builtins import input storefn = os.path.expanduser("~/movies.n3") # storefn = '/home/simon/codes/film.dev/movies.n3' |