Skip to content

Commit

Permalink
touchups
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins committed Oct 30, 2024
1 parent 16d888c commit d10c748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions africanus/experimental/rime/fused/transformers/parangle.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ def parangles(init_state, antenna_position, phase_dir, receptor_angle=None):
raise ValueError("receptor_angle.ndim != 2")

if receptor_angle.shape[1] != 2:
raise ValueError("Only 2 receptor angles " "currently supported")
raise ValueError("Only 2 receptor angles currently supported")

# Select out the feeds we're interested in
receptor_angle = receptor_angle[ufeed, :]
receptor_angle = receptor_angle[init_state.ufeed, :]

for t in range(ntime):
for f in range(nfeed):
Expand Down

0 comments on commit d10c748

Please sign in to comment.