diff options
author | Munyoki Kilyungi | 2024-10-02 06:35:20 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-10-02 06:59:11 +0300 |
commit | 757f674573af5eb7ef1b41b5021de8a9a40a05e8 (patch) | |
tree | 303f3a6dcadb596290ae5eaee9cbeffb20b7fb53 /tests | |
parent | 540300ad13d0d1ced0ea6c9c8efd8272a933dde3 (diff) | |
download | genenetwork3-757f674573af5eb7ef1b41b5021de8a9a40a05e8.tar.gz |
Fix pylint failure.
* tests/fixtures/rdf.py (rdf_setup): Fix C0301.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fixtures/rdf.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/fixtures/rdf.py b/tests/fixtures/rdf.py index 19253bd..64d3107 100644 --- a/tests/fixtures/rdf.py +++ b/tests/fixtures/rdf.py @@ -34,7 +34,9 @@ def rdf_setup(): with open(init_file, "w", encoding="utf-8") as file_: file_.write(Template(VIRTUOSO_INI_FILE).substitute( dir_path=tmpdirname)) - # when using shell=True, pass in string as args, ref: https://stackoverflow.com/a/10661488 + # when using shell=True, pass in string as args, ref: + # https://stackoverflow.com/a/10661488 + # pylint: disable-next=line-too-long command = f"virtuoso-t +foreground +wait +no-checkpoint +configfile {init_file}" with subprocess.Popen( command, |