Skip to content

Commit

Permalink
fix min_deps test
Browse files Browse the repository at this point in the history
  • Loading branch information
bhazelton committed Feb 15, 2024
1 parent d2579f6 commit d0c190e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyuvsim/telescope.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,8 +513,9 @@ def _str_to_obj(self, beam_id, beam_model, use_shared_mem=False):
read_kwargs["use_future_array_shapes"] = True

if (
(mpi.world_comm is not None and use_shared_mem and mpi.rank == 0)
(use_shared_mem and mpi.world_comm is not None and mpi.rank == 0)
or not use_shared_mem
or mpi is None
or mpi.world_comm is None
):
try:
Expand Down

0 comments on commit d0c190e

Please sign in to comment.