From 2138da0a53620d173d6e6a0a8e3fa698fa67bff2 Mon Sep 17 00:00:00 2001 From: Andrew Chael Date: Fri, 19 Apr 2024 18:22:22 -0400 Subject: [PATCH] fixed minor issue in image.display() --- ehtim/image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ehtim/image.py b/ehtim/image.py index 90e98664..3dbf1933 100644 --- a/ehtim/image.py +++ b/ehtim/image.py @@ -3485,7 +3485,7 @@ def display(self, pol=None, cfun=False, interp='gaussian', else: areaunit = 'beam' beamarea = (2.0 * np.pi * beamparams[0] * beamparams[1] / (8.0 * np.log(2))) - factor = beamarea / (self.psize**2) + factor *= beamarea / (self.psize**2) if power != 0: areaunit = areaunit + (r' ($10^{{' + str(power) + '}}$ K)')