From 757f674573af5eb7ef1b41b5021de8a9a40a05e8 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Wed, 2 Oct 2024 06:35:20 +0300 Subject: Fix pylint failure. * tests/fixtures/rdf.py (rdf_setup): Fix C0301. Signed-off-by: Munyoki Kilyungi --- tests/fixtures/rdf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests') 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, -- cgit v1.2.3