Skip to content

Commit

Permalink
Fixing failure in min_versions tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kartographer committed Mar 2, 2025
1 parent bf1d1af commit 2604328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyuvdata/utils/pol.py
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ def get_feeds_from_x_orientation(
feed_array = np.asarray(feeds) if (nants == 0) else np.tile(feeds, (nants, 1))
feed_angle = np.zeros(feed_array.shape, dtype=float)

x_mask = np.equal(feed_array, "x")
x_mask = feed_array == "x"
if x_orientation == "east":
feed_angle[x_mask] = np.pi / 2
if x_orientation == "north":
Expand Down

0 comments on commit 2604328

Please sign in to comment.