Skip to content

Commit

Permalink
local imports in _distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Jan 14, 2025
1 parent ca83a0c commit 8d28e4e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions stubs/setuptools/setuptools/_distutils/core.pyi
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from _typeshed import Incomplete, StrOrBytesPath
from collections.abc import Iterable, Mapping
from distutils.cmd import Command as Command
from distutils.dist import Distribution as Distribution
from distutils.extension import Extension as Extension
from typing import Final, TypedDict, type_check_only
from typing_extensions import Unpack

from ..dist import Distribution as Distribution
from ..extension import Extension as Extension
from .cmd import Command as Command

@type_check_only
class _SetupArgs(TypedDict, total=False): # total=False for custom Distributions that could accept more arguments
name: str
Expand Down

0 comments on commit 8d28e4e

Please sign in to comment.