Skip to content
Snippets Groups Projects
Commit d8e17568 authored by Michael Kuron's avatar Michael Kuron :mortar_board:
Browse files

Fix importing boundaryhandling if waLBerla module is available but without cpp_available

parent e87b4daf
Branches
Tags
1 merge request!154Fix importing boundaryhandling if waLBerla module is available but without cpp_available
Pipeline #23594 passed with stage
in 8 minutes and 28 seconds
......@@ -17,6 +17,8 @@ try:
import waLBerla as wlb
if wlb.cpp_available:
from pystencils.datahandling.parallel_datahandling import ParallelDataHandling
else:
ParallelDataHandling = None
except ImportError:
ParallelDataHandling = None
......
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