Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
probicheaux committed Sep 19, 2024
1 parent 1fcb83a commit 60b775d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import json
import hashlib
import json
import logging
import re
from typing import Dict, List, Literal, Optional, Tuple, Type, Union
Expand Down
6 changes: 3 additions & 3 deletions inference/core/workflows/core_steps/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@
from inference.core.workflows.core_steps.models.foundation.cog_vlm.v1 import (
CogVLMBlockV1,
)
from inference.core.workflows.core_steps.models.foundation.florence2.v1 import (
Florence2BlockV1,
)
from inference.core.workflows.core_steps.models.foundation.google_gemini.v1 import (
GoogleGeminiBlockV1,
)
Expand Down Expand Up @@ -215,9 +218,6 @@
from inference.core.workflows.core_steps.visualizations.triangle.v1 import (
TriangleVisualizationBlockV1,
)
from inference.core.workflows.core_steps.models.foundation.florence2.v1 import (
Florence2BlockV1,
)
from inference.core.workflows.execution_engine.entities.types import (
BAR_CODE_DETECTION_KIND,
BOOLEAN_KIND,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from typing import List, Literal, Optional, Type, TypeVar, Union
import json
from typing import List, Literal, Optional, Type, TypeVar, Union

from pydantic import ConfigDict, Field, model_validator

Expand Down

0 comments on commit 60b775d

Please sign in to comment.