Skip to content

Commit eecb427

Browse files
authored
Changed black logging to be debug instead of warning
Resolves #685
1 parent 53e74cb commit eecb427

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

papermill/translators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def codify(cls, parameters, comment='Parameters'):
193193
fm = black.FileMode(string_normalization=False)
194194
content = black.format_str(content, mode=fm)
195195
except ImportError:
196-
logger.warning("Black is not installed, parameters won't be formatted")
196+
logger.debug("Black is not installed, parameters won't be formatted")
197197
return content
198198

199199
@classmethod

0 commit comments

Comments
 (0)