Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Sep 6, 2024
1 parent e6e3ca1 commit f266f5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
repos:
# Using this mirror lets us use mypyc-compiled black, which is about 2x faster
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.1.1
rev: 23.3.0
hooks:
- id: black
# It is recommended to specify the latest version of Python
Expand Down
8 changes: 4 additions & 4 deletions bedboss/refgenome_validator/refgenomevalidator.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ def determine_compatibility(
final_compatibility_list = []
for genome_model in self.genome_models:
# First and Second Layer of Compatibility
model_compat_stats[genome_model.genome_alias] = (
self.compare_chrom_names_lengths(
bed_chrom_info, genome_model.chrom_sizes
)
model_compat_stats[
genome_model.genome_alias
] = self.compare_chrom_names_lengths(
bed_chrom_info, genome_model.chrom_sizes
)
# Third Layer is to run IGD but only if layer 1 and layer 2 have passed
if (
Expand Down

0 comments on commit f266f5d

Please sign in to comment.