Skip to content

Commit

Permalink
chore(internal): use typing_extensions.overload instead of typing (
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Sep 24, 2024
1 parent 3121db4 commit e946115
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/openai/resources/beta/threads/runs/runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

from __future__ import annotations

from typing import List, Union, Iterable, Optional, overload
from typing_extensions import Literal
from typing import List, Union, Iterable, Optional
from typing_extensions import Literal, overload

import httpx

Expand Down
4 changes: 2 additions & 2 deletions src/openai/resources/beta/threads/threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

from __future__ import annotations

from typing import Union, Iterable, Optional, overload
from typing_extensions import Literal
from typing import Union, Iterable, Optional
from typing_extensions import Literal, overload

import httpx

Expand Down
4 changes: 2 additions & 2 deletions src/openai/resources/chat/completions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

from __future__ import annotations

from typing import Dict, List, Union, Iterable, Optional, overload
from typing_extensions import Literal
from typing import Dict, List, Union, Iterable, Optional
from typing_extensions import Literal, overload

import httpx

Expand Down
4 changes: 2 additions & 2 deletions src/openai/resources/completions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

from __future__ import annotations

from typing import Dict, List, Union, Iterable, Optional, overload
from typing_extensions import Literal
from typing import Dict, List, Union, Iterable, Optional
from typing_extensions import Literal, overload

import httpx

Expand Down

0 comments on commit e946115

Please sign in to comment.