Skip to content
Snippets Groups Projects
Commit 7354a3f5 authored by Markus Holzer's avatar Markus Holzer
Browse files

Merge branch 'patch-1' into 'master'

Fix importing boundaryhandling if waLBerla module is available but without cpp_available

See merge request !154
parents 53e4dc91 d8e17568
Branches
Tags release/0.2.13
1 merge request!154Fix importing boundaryhandling if waLBerla module is available but without cpp_available
Pipeline #24058 passed with warnings with stages
in 10 minutes and 40 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