Skip to content

Commit

Permalink
fix flake8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlKCarlK committed Oct 29, 2023
1 parent e0758ee commit 518fbf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bed_reader/_open_bed.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _sequence(key, length, missing, dtype):
longest = len(f"{key}{length}")
dtype = f"<U{longest}"
return np.fromiter(
(f"{key}{i+1}" for i in range(length)), dtype=dtype, count=length
(f"{key}{i + 1}" for i in range(length)), dtype=dtype, count=length
)


Expand Down
2 changes: 1 addition & 1 deletion useful.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# test Rust
pip# test Rust
cargo test

# install packages, compile Rust for Python, and test Python
Expand Down

0 comments on commit 518fbf1

Please sign in to comment.