Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
IshaanDesai committed Aug 1, 2023
1 parent 127fdd3 commit f661455
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions fenicsprecice/fenicsprecice.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,11 @@ def __init__(self, adapter_config_filename='precice-adapter-config.json'):
# Setup up MPI communicator on mpi4py
self._comm = MPI.COMM_WORLD

self._participant = precice.Participant(self._config.get_participant_name(), self._config.get_config_file_name(),
self._comm.Get_rank(), self._comm.Get_size())
self._participant = precice.Participant(
self._config.get_participant_name(),
self._config.get_config_file_name(),
self._comm.Get_rank(),
self._comm.Get_size())

# FEniCS related quantities
self._read_function_space = None # initialized later
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_write_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

dummy_dt = 1


class RightBoundary(SubDomain):
def inside(self, x, on_boundary):
tol = 1E-14
Expand Down

0 comments on commit f661455

Please sign in to comment.