Skip to content

Commit b607229

Browse files
committed
Changes from black
1 parent d77edd7 commit b607229

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

fgpyo/fasta/builder.py

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def samtools_dict(*args: Any) -> None:
4949
def samtools_faidx(*args: Any) -> None:
5050
pass
5151

52+
5253
else:
5354
from pysam import dict as samtools_dict
5455
from pysam import faidx as samtools_faidx

fgpyo/util/inspect.py

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from typing import Tuple
1111
from typing import Type
1212
from typing import Union
13+
1314
if sys.version_info >= (3, 12):
1415
from typing import TypeAlias
1516
else:

fgpyo/util/tests/test_inspect.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
import attr
2-
import pytest
31
from typing import Dict
42
from typing import List
53
from typing import Optional
64
from typing import Set
75
from typing import Tuple
86

7+
import attr
8+
import pytest
9+
910
from fgpyo.util.inspect import attr_from
1011
from fgpyo.util.inspect import attribute_has_default
1112
from fgpyo.util.inspect import attribute_is_optional

0 commit comments

Comments
 (0)