Skip to content

Commit

Permalink
fix(imports): fixed typings imports error
Browse files Browse the repository at this point in the history
  • Loading branch information
shinybrar committed Jun 25, 2024
1 parent 769cb73 commit 98edf99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflow/http/context.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""HTTP client for interacting with the Workflow Servers."""

import os
from typing import Any, Dict, List, Optional, Self
from typing import Any, Dict, List, Optional

from pydantic import (
AliasChoices,
Expand All @@ -12,6 +12,7 @@
model_validator,
)
from pydantic_settings import BaseSettings, SettingsConfigDict
from typing_extensions import Self

from workflow import DEFAULT_WORKSPACE_PATH
from workflow.http.buckets import Buckets
Expand Down

0 comments on commit 98edf99

Please sign in to comment.