Skip to content

Commit

Permalink
nebari-dev#1792 Use @override from typing-extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
arjxn-py committed Jun 19, 2024
1 parent ff85925 commit 941d7eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ dependencies = [
"ruamel.yaml==0.18.6",
"typer==0.9.0",
"packaging==23.2",
"typing-extensions==4.12.0",
]

[project.optional-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
import textwrap
from abc import ABC
from pathlib import Path
from typing import Any, ClassVar, Dict, override
from typing import Any, ClassVar, Dict

import rich
from packaging.version import Version
from pydantic import ValidationError
from rich.prompt import Prompt
from typing_extensions import override

from _nebari.config import backup_configuration
from _nebari.stages.infrastructure import (
Expand Down

0 comments on commit 941d7eb

Please sign in to comment.