Skip to content

Commit

Permalink
Explain unexpeced top-level type
Browse files Browse the repository at this point in the history
Might help in use cases like #342
  • Loading branch information
kvid committed Jun 10, 2024
1 parent 954c4f5 commit eb61e65
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/wireviz/wireviz.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ def parse(
raise Exception("No output formats or return types specified")

yaml_data, yaml_file = _get_yaml_data_and_path(inp)
assert isinstance(
yaml_data, dict
), f"Expected a dict/map as top-level YAML input, but got: {type(yaml_data)}"
if output_formats:
# need to write data to file, determine output directory and filename
output_dir = _get_output_dir(yaml_file, output_dir)
Expand Down

0 comments on commit eb61e65

Please sign in to comment.