Skip to content
Snippets Groups Projects
Commit 6defe2e8 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix is_volume_where

parent 4ccc3c55
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,9 @@ class Discretization(object):
def is_volume_where(self, where):
from grudge import sym
return where == sym.VTAG_ALL
return (
where is None
or where == sym.VTAG_ALL)
# vim: foldmethod=marker
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