diff --git a/core/dbt/deprecations.py b/core/dbt/deprecations.py index ee6d5fa14b7..1996d62c145 100644 --- a/core/dbt/deprecations.py +++ b/core/dbt/deprecations.py @@ -29,7 +29,9 @@ def description(self) -> str: def show(self, *args, **kwargs) -> None: if self.name not in active_deprecations: desc = self.description.format(**kwargs) - msg = printer.line_wrap_message(desc, prefix='* Deprecation Warning: ') + msg = printer.line_wrap_message( + desc, prefix='* Deprecation Warning: ' + ) dbt.exceptions.warn_or_error(msg) active_deprecations.add(self.name)