Skip to content
Snippets Groups Projects
Commit 205e2a42 authored by Martin Bauer's avatar Martin Bauer
Browse files

pystencils should also work when llvm and/or dot is not available

-> moved llvm and dot import in try-except block
parent 117f8b73
Branches
Tags
No related merge requests found
from .llvm import generateLLVM
from .cbackend import generateC
from .dot import dotprint
try:
from .dot import dotprint
from .llvm import generateLLVM
except ImportError:
pass
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment