Skip to content

Commit

Permalink
Fix explore join search
Browse files Browse the repository at this point in the history
  • Loading branch information
paco-valdez committed Jun 10, 2024
1 parent 036755b commit 3818c77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lkml2cube/parser/explores.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def traverse_graph(join_paths, cube_left, cube_right):
queue.append(new_path)

typer.echo(f"Cubes are not reachable: {cube_left}, {cube_right}")
return ".".join(cube_left, cube_right)
return ".".join([cube_left, cube_right])


def generate_cube_joins(cube_def, lookml_model):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[project]
name = "lkml2cube"
version = "0.2.2"
version = "0.2.3"
description = "Looker ML to Cube converter"
authors = [
{name = "Paco Valdez", email = "[email protected]"},
Expand Down

0 comments on commit 3818c77

Please sign in to comment.