From 4e124cad5448604aaf3aa354626fbd632fb2f9b0 Mon Sep 17 00:00:00 2001 From: zietzm Date: Tue, 27 Aug 2024 14:41:22 -0700 Subject: [PATCH] fix: formatting issue with black --- src/maxgcp/cli.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/maxgcp/cli.py b/src/maxgcp/cli.py index 0c69bcc..2f37642 100644 --- a/src/maxgcp/cli.py +++ b/src/maxgcp/cli.py @@ -553,11 +553,10 @@ def run_command( ): """Run MaxGCP on a set of GWAS summary statistics.""" logger.info("Computing genetic covariances using LDSC") - with tempfile.NamedTemporaryFile( - suffix=".tsv" - ) as covariance_file, tempfile.NamedTemporaryFile( - suffix=".tsv" - ) as maxgcp_weights_file: + with ( + tempfile.NamedTemporaryFile(suffix=".tsv") as covariance_file, + tempfile.NamedTemporaryFile(suffix=".tsv") as maxgcp_weights_file, + ): covariance_path = Path(covariance_file.name) compute_genetic_covariance( gwas_paths=gwas_paths,