Skip to content

Commit 37ac44d

Browse files
committed
Run ruff
1 parent fed7ac7 commit 37ac44d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/cool_seq_tool/mappers/exon_genomic_coords.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class TxSegment(BaseModelForbidExtra):
7070
)
7171

7272
@model_validator(mode="before")
73-
def check_seg_pos(cls, values: dict) -> dict: # noqa: N805
73+
def check_seg_pos(cls, values: dict) -> dict: # noqa: N805
7474
"""Ensure that only one of `start` or `end` is set in the
7575
genomic_location field
7676
@@ -87,7 +87,6 @@ def check_seg_pos(cls, values: dict) -> dict: # noqa: N805
8787
raise ValueError(err_msg)
8888
return values
8989

90-
9190
model_config = ConfigDict(
9291
json_schema_extra={
9392
"example": {

0 commit comments

Comments
 (0)