Skip to content

Commit

Permalink
cli.py: importing META_MIN_READS from const.py so that linters don't …
Browse files Browse the repository at this point in the history
…complain
  • Loading branch information
andrewdavidsmith committed Apr 7, 2024
1 parent 910fbc0 commit 73b6df1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ribotricer/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
from .const import MINIMUM_VALID_CODONS_RATIO
from .const import MINIMUM_READS_PER_CODON
from .const import MINIMUM_DENSITY_OVER_ORF
from .const import META_MIN_READS

from .count_orfs import count_orfs
from .count_orfs import count_orfs_codon
Expand Down Expand Up @@ -200,8 +201,7 @@ def prepare_orfs_cmd(
@click.option(
"--meta-min-reads",
type=int,
# ADS: META_MIN_READS was detected as undefined by flake8
default=META_MIN_READS, # noqa: F821
default=META_MIN_READS,
show_default=True,
help="Minimum number of reads for a read length to be considered",
)
Expand Down

0 comments on commit 73b6df1

Please sign in to comment.