Skip to content

Commit

Permalink
Move Never from typing to typing_extensions (#1808)
Browse files Browse the repository at this point in the history
  • Loading branch information
NolanTrem authored Jan 11, 2025
1 parent 3e583ce commit 9ec211f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion py/cli/command_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
import types
from functools import wraps
from pathlib import Path
from typing import Any, Never
from typing import Any

import asyncclick as click
from asyncclick import pass_context
from asyncclick.exceptions import Exit
from rich import box
from rich.console import Console
from rich.table import Table
from typing_extensions import Never

from sdk import R2RAsyncClient

Expand Down

0 comments on commit 9ec211f

Please sign in to comment.