diff options
| author | Iwan Aucamp <aucampia@gmail.com> | 2022-05-16 20:44:44 +0200 |
|---|---|---|
| committer | Iwan Aucamp <aucampia@gmail.com> | 2022-05-17 00:38:56 +0200 |
| commit | 5a0c55959ea13f29407f4d265fa4d5ffef89c37e (patch) | |
| tree | 255151915c9cee681563e970d61c0a64cc8d4dfd /test/test_sparql/test_datetime_processing.py | |
| parent | 63e4913104ee0fd336e800e7fefe8e21633d4688 (diff) | |
| download | rdflib-5a0c55959ea13f29407f4d265fa4d5ffef89c37e.tar.gz | |
test: remove unused imports in test code
This patch removes unused imports in test code. This is mainly to remove
the potential snag for flake8/flakeheaven.
The actual cleanup was done with `pycln --all test`.
Also:
- Remove superflous `pass` statements.
Diffstat (limited to 'test/test_sparql/test_datetime_processing.py')
| -rw-r--r-- | test/test_sparql/test_datetime_processing.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/test_sparql/test_datetime_processing.py b/test/test_sparql/test_datetime_processing.py index b3179d55..41da92be 100644 --- a/test/test_sparql/test_datetime_processing.py +++ b/test/test_sparql/test_datetime_processing.py @@ -1,11 +1,8 @@ import io -from pprint import pprint from test.utils import eq_ import rdflib -from rdflib import XSD, BNode, Graph, Literal, URIRef -from rdflib.compare import isomorphic -from rdflib.plugins.sparql import prepareQuery +from rdflib import Graph def test_dateTime_dateTime_subs_issue(): |
