Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
JCZuurmond committed Jan 17, 2025
1 parent d2db4b6 commit 14b8c45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/databricks/labs/ucx/source_code/notebooks/sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit 14b8c45

Please sign in to comment.