diff options
author | Frederick Muriuki Muriithi | 2024-09-28 16:55:54 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-28 16:55:54 -0500 |
commit | c2c89bdc69913b86495b0fd568b554c357ec7ccf (patch) | |
tree | fa742fe24ff7cf69f24aba5ed527727201fc0330 /tests/fixtures | |
parent | b57d43ff863fd1e9a80d1579bc66ce8a7174480e (diff) | |
download | genenetwork3-c2c89bdc69913b86495b0fd568b554c357ec7ccf.tar.gz |
Lint: fix some linting errors.
Diffstat (limited to 'tests/fixtures')
-rw-r--r-- | tests/fixtures/rdf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fixtures/rdf.py b/tests/fixtures/rdf.py index b942282..9bf297b 100644 --- a/tests/fixtures/rdf.py +++ b/tests/fixtures/rdf.py @@ -1,9 +1,9 @@ """Test fixtures to set up a test named graph for loading RDF data.""" import os -from requests.auth import HTTPDigestAuth -from flask import config -import requests + import pytest +import requests +from requests.auth import HTTPDigestAuth def get_sparql_auth_conf(config_obj) -> dict: |