From f7459ecc32c399e629aa122d34738b20aaaf558a Mon Sep 17 00:00:00 2001 From: Manuel Holtgrewe Date: Mon, 19 Feb 2024 16:14:54 +0100 Subject: [PATCH] make black happy --- chew/fingerprint.py | 6 +++--- chew/serve.py | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/chew/fingerprint.py b/chew/fingerprint.py index 6fa64b5..53aca73 100644 --- a/chew/fingerprint.py +++ b/chew/fingerprint.py @@ -285,9 +285,9 @@ def write_fingerprint( np.savez_compressed( config.output_fingerprint, header=header, - autosomal_fingerprint=autosomal_fingerprint - if autosomal_fingerprint is not None - else np.zeros(0), + autosomal_fingerprint=( + autosomal_fingerprint if autosomal_fingerprint is not None else np.zeros(0) + ), autosomal_aafs=autosomal_aafs if autosomal_aafs is not None else np.zeros(0), chrx_fingerprint=chrx_fingerprint if chrx_fingerprint is not None else np.zeros(0), chrx_aafs=chrx_aafs if chrx_aafs is not None else np.zeros(0), diff --git a/chew/serve.py b/chew/serve.py index 9aab0ca..c7a6806 100644 --- a/chew/serve.py +++ b/chew/serve.py @@ -1,6 +1,5 @@ """Implementation of the serve command""" - import csv import typing