From 091908224a2068cd5d4789912c71521eeef57ec6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 15:19:27 +0000 Subject: [PATCH] chore(deps): bump black from 23.12.1 to 24.2.0 (#66) * chore(deps): bump black from 23.12.1 to 24.2.0 Bumps [black](https://github.com/psf/black) from 23.12.1 to 24.2.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/23.12.1...24.2.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * make black happy --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Manuel Holtgrewe --- chew/fingerprint.py | 6 +++--- chew/serve.py | 1 - requirements/test.txt | 2 +- 3 files changed, 4 insertions(+), 5 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 diff --git a/requirements/test.txt b/requirements/test.txt index 6ddfc21..606b4fd 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,6 +1,6 @@ -r base.txt -black ==23.12.1 +black ==24.2.0 isort >=5.10.1, <6.0 flake8 >=5.0.4, <8.0 pytest