Skip to content

Commit

Permalink
Fix code style issues with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Nov 25, 2024
1 parent 6e3cc1b commit b86fb37
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions stranger/cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import gzip
import logging
from codecs import getreader, open

try:
from importlib.metadata import version
except ImportError:
Expand Down Expand Up @@ -49,12 +50,12 @@
help="Set the level of log output.",
show_default=True,
)
@click.version_option(version('stranger'))
@click.version_option(version("stranger"))
@click.pass_context
def cli(context, vcf, family_id, repeats_file, loglevel, trgt):
"""Annotate str variants with str status"""
coloredlogs.install(level=loglevel)
LOG.info("Running stranger version %s", version('stranger'))
LOG.info("Running stranger version %s", version("stranger"))

repeat_information = None
repeats_file_type = "tsv"
Expand Down

0 comments on commit b86fb37

Please sign in to comment.