Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Avoid the unnecessary import of typing_extensions in newer Python versions #1048

Merged
merged 8 commits into from
Feb 27, 2025
Prev Previous commit
Next Next commit
Merge branch 'master' into avoid-typing-extensions
svlandeg committed Dec 26, 2024
commit 254944bb1387c0496ba7d079b6a6dbc9de7137f5
1 change: 1 addition & 0 deletions typer/rich_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Extracted and modified from https://github.com/ewels/rich-click

import inspect
import io
from collections import defaultdict
from gettext import gettext as _
from os import getenv
You are viewing a condensed version of this merge commit. You can view the full changes here.