Skip to content

Commit

Permalink
chore(ruff): Remove unused 0.9.2 ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
dangotbanned committed Jan 16, 2025
1 parent 9c5db19 commit e168948
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion altair/datasets/_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from altair.datasets._readers import _Reader
from altair.datasets._typing import FlFieldStr

_Dataset: TypeAlias = "Dataset | LiteralString" # noqa: TC008
_Dataset: TypeAlias = "Dataset | LiteralString"
_FlSchema: TypeAlias = Mapping[str, FlFieldStr]

__all__ = ["CsvCache", "DatasetCache", "SchemaCache", "csv_cache"]
Expand Down
2 changes: 1 addition & 1 deletion altair/datasets/_readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
from altair.datasets._typing import Dataset, Extension, Metadata
from altair.vegalite.v5.schema._typing import OneOrSeq

_IntoSuffix: TypeAlias = "StrPath | Metadata" # noqa: TC008
_IntoSuffix: TypeAlias = "StrPath | Metadata"
_ExtensionScan: TypeAlias = Literal[".parquet"]
_T = TypeVar("_T")

Expand Down
2 changes: 1 addition & 1 deletion tools/datasets/npm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from typing_extensions import TypeAlias
from tools.datasets.models import Package, ParsedPackage

BranchOrTag: TypeAlias = 'Literal["main"] | LiteralString' # noqa: TC008
BranchOrTag: TypeAlias = 'Literal["main"] | LiteralString'


__all__ = ["Npm"]
Expand Down

0 comments on commit e168948

Please sign in to comment.