Skip to content

Commit baae4a7

Browse files
committed
fix: fix error with integer paths from json validation
1 parent 39e3c22 commit baae4a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbt2looker/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def validate_manifest(raw_manifest: dict):
2323
def raise_error_context(error: jsonschema.ValidationError, offset=''):
2424
for error in sorted(error.context, key=lambda e: e.schema_path):
2525
raise_error_context(error, offset=offset + ' ')
26-
path = '.'.join(list(error.absolute_path))
26+
path = '.'.join([str(p) for p in error.absolute_path])
2727
logging.error(f'{offset}Error in manifest at {path}: {error.message}')
2828

2929

0 commit comments

Comments
 (0)