Skip to content

Commit

Permalink
typoe fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tgalvin committed Jul 5, 2024
1 parent e89ca15 commit 891ed98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flint/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def plot_rms_map(

# Pirate no believes get below 10uJy/beam mateeey. Percentile a little more
# robust to outliers but much of a much
floor: float = max(1, np.floort(np.log10(np.nanpercentile(rms_data, 16)))) # type: ignore
floor: float = max(1, np.floor(np.log10(np.nanpercentile(rms_data, 16)))) # type: ignore

im = ax.imshow(
np.log10(rms_data),
Expand Down

0 comments on commit 891ed98

Please sign in to comment.