From 0f1d97d87d8df6ff44b095f19244eb6e504dbd5c Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Fri, 2 Sep 2022 14:44:16 +0900 Subject: [PATCH] Formatting --- spacy/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/util.py b/spacy/util.py index 2a7a296a0..ca069d88a 100644 --- a/spacy/util.py +++ b/spacy/util.py @@ -975,7 +975,7 @@ def run_command( # As above, this will usually but not always be correct on Windows, but # is only used for debugging purposes. if hasattr(shlex, "join"): - cmd_str = shlex.join(command) # type: ignore + cmd_str = shlex.join(command) # type: ignore else: # shlex.join is more correct, but is only available in 3.8+ cmd_str = " ".join(command)