Если я использую этот код в сценарии:
import warnings
if True:
warnings.warn(
"The specified directory is not empty, and does not "
"appear to contain a pipeline we can update. Exiting."
)
, я получаю это в качестве вывода:
~ > create.py -p something -o .
somethings.py:58: UserWarning: The specified directory is not empty, and does not appear to contain a pipeline we can update. Exiting.
"The specified directory is not empty, and does not"
~ >
Почему снова печатается строка The specified directory is not empty, and does not
и как ее повернуть это выключено?
С наилучшими пожеланиями.