Skip to content

Commit b789392

Browse files
committed
chore: isort
1 parent 0c5d6ff commit b789392

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

fgpyo/fastx/__init__.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,16 @@
2727
from contextlib import AbstractContextManager
2828
from pathlib import Path
2929
from types import TracebackType
30-
from typing import cast
3130
from typing import Iterator
3231
from typing import Optional
33-
from typing import Union
3432
from typing import Set
3533
from typing import Tuple
3634
from typing import Type
35+
from typing import Union
36+
from typing import cast
3737

38-
from pysam import FastxFile, FastxRecord
38+
from pysam import FastxFile
39+
from pysam import FastxRecord
3940

4041

4142
class FastxZipped(AbstractContextManager, Iterator[Tuple[FastxRecord, ...]]):

fgpyo/fastx/tests/test_fastx_zipped.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import gzip
2-
32
from pathlib import Path
43

54
import pytest

fgpyo/read_structure.py

-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070

7171
import attr
7272

73-
7473
ANY_LENGTH_CHAR: str = "+"
7574
"""A character that can be put in place of a number in a read structure to mean "0 or more bases".
7675
"""

0 commit comments

Comments
 (0)