mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
setuptools & distutils: ClassVar mutables (and tuples) (#12403)
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
from typing import ClassVar
|
||||
|
||||
from sassutils.builder import Manifest as Manifest
|
||||
from setuptools import Command, Distribution
|
||||
|
||||
@@ -5,7 +7,7 @@ def validate_manifests(dist: Distribution, attr: str, value: object) -> None: ..
|
||||
|
||||
class build_sass(Command):
|
||||
description: str
|
||||
user_options: list[tuple[str, str, str]]
|
||||
user_options: ClassVar[list[tuple[str, str, str]]]
|
||||
package_dir: dict[str, str] | None
|
||||
output_style: str
|
||||
def initialize_options(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user