Skip to content

Commit

Permalink
Fix CI (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward authored Dec 16, 2024
1 parent e253e14 commit dbaed76
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gusto/solvers/preconditioners.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from firedrake.petsc import PETSc
from gusto.recovery.recovery_kernels import AverageKernel, AverageWeightings
from pyop2.profiling import timed_region, timed_function
from pyop2.utils import as_tuple
from functools import partial


Expand Down Expand Up @@ -144,7 +143,7 @@ def initialize(self, pc):
if isinstance(subdom, str):
neumann_subdomains |= set([subdom])
else:
neumann_subdomains |= set(as_tuple(subdom, int))
neumann_subdomains |= set(subdom)

# separate out the top and bottom bcs
extruded_neumann_subdomains = neumann_subdomains & {"top", "bottom"}
Expand Down

0 comments on commit dbaed76

Please sign in to comment.