Skip to content

Commit d863b28

Browse files
committed
Lint fixes.
1 parent 33a1b69 commit d863b28

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gxformat2/normalized/_expanded.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
class ExpandedWorkflowStep(NormalizedWorkflowStep):
2929
"""Format2 step with run fully resolved — no ImportReference remaining."""
3030

31-
run: ExpandedFormat2 | GalaxyUserToolStub | None = Field(default=None, description="Resolved subworkflow, user tool, or absent.")
31+
run: ExpandedFormat2 | GalaxyUserToolStub | None = Field(
32+
default=None, description="Resolved subworkflow, user tool, or absent."
33+
)
3234

3335

3436
class ExpandedFormat2(NormalizedFormat2):

gxformat2/normalized/_format2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
from pathlib import Path
1313
from typing import Any, Literal, Union
1414

15-
from typing_extensions import TypeAlias
16-
1715
from pydantic import BaseModel, ConfigDict, Field, field_validator
16+
from typing_extensions import TypeAlias
1817

1918
from gxformat2.schema.gxformat2 import (
2019
CreatorOrganization,

gxformat2/normalized/_native.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
from pathlib import Path
1313
from typing import Annotated, Any, Union
1414

15-
from typing_extensions import TypeAlias
16-
1715
from pydantic import BaseModel, ConfigDict, Discriminator, Field, Tag
16+
from typing_extensions import TypeAlias
1817

1918
from gxformat2.native import load_native
2019
from gxformat2.schema.native import (

0 commit comments

Comments
 (0)