From 14b8c4506f1a4abf18921ef63de6e76a5d79b837 Mon Sep 17 00:00:00 2001 From: Cor Zuurmond Date: Fri, 17 Jan 2025 10:07:29 +0100 Subject: [PATCH] Format --- src/databricks/labs/ucx/source_code/notebooks/sources.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/databricks/labs/ucx/source_code/notebooks/sources.py b/src/databricks/labs/ucx/source_code/notebooks/sources.py index 3ddbc9d94a..eb6eea63e1 100644 --- a/src/databricks/labs/ucx/source_code/notebooks/sources.py +++ b/src/databricks/labs/ucx/source_code/notebooks/sources.py @@ -436,5 +436,7 @@ def _lint_notebook(self) -> Iterable[Advice]: yield Failure("unknown-language", f"Cannot detect language for {self._path}", 0, 0, 1, 1) return notebook = Notebook.parse(self._path, self._content, language) - notebook_linter = NotebookLinter(self._ctx, self._path_lookup, self._session_state, notebook, self._inherited_tree) + notebook_linter = NotebookLinter( + self._ctx, self._path_lookup, self._session_state, notebook, self._inherited_tree + ) yield from notebook_linter.lint()