Skip to content

Commit

Permalink
refactor wes models
Browse files Browse the repository at this point in the history
  • Loading branch information
salihuDickson committed Sep 10, 2024
1 parent 5e6b469 commit c43bd08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions crategen/converters/wes_converter.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from pydantic import ValidationError

from ..models.wes_models import WESData, WESOutputs, RunRequest, Log
from ..models.wes_models import Log, RunRequest, WESData, WESOutputs
from ..models.wrroc_models import WRROCDataWES
from ..utils import convert_to_iso8601
from ..validators import validate_wrroc_wes
from .abstract_converter import AbstractConverter


Expand Down
2 changes: 1 addition & 1 deletion crategen/models/wes_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Each model in this module conforms to the corresponding WES model names as specified by the GA4GH schema (https://ga4gh.github.io/workflow-execution-service-schemas/docs/).
"""

from datetime import datetime
from enum import Enum
from typing import Optional
from datetime import datetime

from pydantic import BaseModel, Field, root_validator, validator

Expand Down

0 comments on commit c43bd08

Please sign in to comment.