Skip to content

Commit

Permalink
Re-ruff to version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
remiolsen committed Mar 6, 2024
1 parent e119808 commit 5bbc42a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 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 @@
# .pre-commit-config.yaml
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.13
rev: v0.3.0
hooks:
- id: ruff
- id: ruff-format
Expand Down
6 changes: 3 additions & 3 deletions anglerfish/explore/explore.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ def run_explore(
)
match_col_df = match_col_df.astype({"match_1_len": "int32"})

df_good_hits.loc[
match_col_df.index, match_col_df.columns
] = match_col_df
df_good_hits.loc[match_col_df.index, match_col_df.columns] = (
match_col_df
)

thres = round(
(
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
conda install -c bioconda anglerfish
"""

from pathlib import Path

from setuptools import find_packages, setup
Expand Down

0 comments on commit 5bbc42a

Please sign in to comment.