diff options
| author | Nicholas Car <nicholas.car@surroundaustralia.com> | 2021-04-24 14:00:01 +1000 |
|---|---|---|
| committer | Nicholas Car <nicholas.car@surroundaustralia.com> | 2021-04-24 14:00:01 +1000 |
| commit | 908f1d17d7d15665265fdf3a564efeb936e9133b (patch) | |
| tree | 7a997ae695c440a3b85e1ad1c86eef3ee4da542c /examples | |
| parent | 112e3cc1e6e744db8037e213378437166f60e75f (diff) | |
| download | rdflib-908f1d17d7d15665265fdf3a564efeb936e9133b.tar.gz | |
remove decode() for master compat
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/datasets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/datasets.py b/examples/datasets.py index 6af96d13..72cadeb4 100644 --- a/examples/datasets.py +++ b/examples/datasets.py @@ -140,7 +140,7 @@ ex:graph-2 { """ print("Printing Serialised Dataset after graph_1 removal:") print("---") -print(d.serialize(format="trig").decode().strip()) +print(d.serialize(format="trig").strip()) print("---") print() print() |
