Skip to content

Commit 3818c77

Browse files
committed
Fix explore join search
1 parent 036755b commit 3818c77

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lkml2cube/parser/explores.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def traverse_graph(join_paths, cube_left, cube_right):
6060
queue.append(new_path)
6161

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

6565

6666
def generate_cube_joins(cube_def, lookml_model):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[project]
33
name = "lkml2cube"
4-
version = "0.2.2"
4+
version = "0.2.3"
55
description = "Looker ML to Cube converter"
66
authors = [
77
{name = "Paco Valdez", email = "[email protected]"},

0 commit comments

Comments
 (0)