Skip to content

Commit

Permalink
make black happy
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Feb 19, 2024
1 parent f5165a1 commit f7459ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 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

0 comments on commit f7459ec

Please sign in to comment.