Skip to content
Snippets Groups Projects
Commit d8274405 authored by René Heß's avatar René Heß
Browse files

Make pip pass

parent 9c206736
No related branches found
No related tags found
No related merge requests found
......@@ -296,10 +296,7 @@ def name_quadrature_point():
def pymbolic_quadrature_position():
visitor = get_global_context_value('visitor')
try:
info = visitor.current_info[1]
except:
from pudb import set_trace; set_trace()
info = visitor.current_info[1]
if info is None:
element = None
else:
......
......@@ -280,7 +280,7 @@ def local_quadrature_points_per_direction():
if get_option("grid_unstructured"):
# For unstructured grids the amount of quadrature points could be different for
# self and neighbor. For now assert that this case is not happining.
assert len(set(qps_per_dir))==1
assert len(set(qps_per_dir)) == 1
qps_per_dir = qps_per_dir[:facedir] + qps_per_dir[facedir + 1:]
return qps_per_dir
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment