Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better error message when attempting to import proof from TikZ. #224

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion zxlive/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,10 @@ def import_diagram_from_file(file_path: str, selected_filter: str = FileFormat.A
elif selected_format == FileFormat.QASM:
return ImportGraphOutput(selected_format, file_path, Circuit.from_qasm(data).to_graph()) # type: ignore
elif selected_format == FileFormat.TikZ:
return ImportGraphOutput(selected_format, file_path, GraphT.from_tikz(data)) # type: ignore
try:
return ImportGraphOutput(selected_format, file_path, GraphT.from_tikz(data)) # type: ignore
except ValueError:
raise ValueError("Probable reason: attempted to import a proof from TikZ, which is not supported.")
else:
assert selected_format == FileFormat.All
try:
Expand Down
Loading