Skip to content

Commit

Permalink
chore(deps): bump black from 23.12.1 to 24.2.0 (#66)
Browse files Browse the repository at this point in the history
* 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](psf/black@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] <support@github.com>

* make black happy

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Manuel Holtgrewe <manuel.holtgrewe@bih-charite.de>
  • Loading branch information
dependabot[bot] and holtgrewe authored Feb 19, 2024
1 parent 8aaf3ae commit 0919082
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions chew/fingerprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
1 change: 0 additions & 1 deletion chew/serve.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Implementation of the serve command"""


import csv
import typing

Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 0919082

Please sign in to comment.