Skip to content

Commit dfe5b3a

Browse files
ocd fix
1 parent 2a18eb4 commit dfe5b3a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

sqlmesh/core/renderer.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,9 @@ def _resolve_table(table: str | exp.Table) -> str:
242242
except ParsetimeAdapterCallError:
243243
raise
244244
except Exception as ex:
245-
error_msg = f"Could not render jinja for '{self._path}'.\n" + extract_error_details(
246-
ex
247-
)
248-
raise ConfigError(error_msg) from ex
245+
raise ConfigError(
246+
f"Could not render jinja for '{self._path}'.\n" + extract_error_details(ex)
247+
) from ex
249248

250249
if rendered_expression.strip():
251250
try:

0 commit comments

Comments
 (0)