From 200976fe3547878099730a0d7d2311e18b278a0b Mon Sep 17 00:00:00 2001 From: zjyan Date: Thu, 11 Apr 2024 15:26:30 +0800 Subject: [PATCH] update pep8 ifs_sim --- csst_ifs_sim/csst_ifs_sim.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/csst_ifs_sim/csst_ifs_sim.py b/csst_ifs_sim/csst_ifs_sim.py index c06caa7..fe44fd5 100644 --- a/csst_ifs_sim/csst_ifs_sim.py +++ b/csst_ifs_sim/csst_ifs_sim.py @@ -1887,8 +1887,7 @@ class IFSsimulator(): :rtype: ndarray """ self.log.info('Generating a flat field...') - self.log.info('The flat field has mean value of 1 and a given fluctuations, - usually either 1 or 2 percent defined by sigma= %d...' % sigma) + self.log.info('The flat field has mean value of 1 and a given fluctuations, usually either 1 or 2 percent defined by sigma= %d...' % sigma) np.random.seed(5*self.simnumber) self.flat_b = np.random.normal(loc=ave, scale=sigma, size=(2048, 4096)) -- GitLab