Skip to content

Commit

Permalink
Fix incorrect gain flag type.
Browse files Browse the repository at this point in the history
  • Loading branch information
JSKenyon committed Dec 24, 2024
1 parent 7439580 commit 9b43d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quartical/gains/feed_flip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ def init_term(self, term_spec, ref_ant, ms_kwargs, term_kwargs, meta=None):
"Feed flip unsupported for less than four correlations"
)

gain_flags = np.zeros(gains.shape[:-1], dtype=bool)
gain_flags = np.zeros(gains.shape[:-1], dtype=np.int8)

return gains, gain_flags

0 comments on commit 9b43d6b

Please sign in to comment.