Unverified Commit 9fa3ed1a authored by Michał Pogoda's avatar Michał Pogoda Committed by GitHub
Browse files

Fix missing space in multiline warning (#8593)

Multiline string informing about missing PyTorch/TensorFlow had missing space.
parent 8fcb6935
...@@ -883,7 +883,7 @@ else: ...@@ -883,7 +883,7 @@ else:
if not is_tf_available() and not is_torch_available(): if not is_tf_available() and not is_torch_available():
logger.warning( logger.warning(
"Neither PyTorch nor TensorFlow >= 2.0 have been found." "Neither PyTorch nor TensorFlow >= 2.0 have been found. "
"Models won't be available and only tokenizers, configuration" "Models won't be available and only tokenizers, configuration "
"and file/data utilities can be used." "and file/data utilities can be used."
) )
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment