mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Fix python-slugify replacements argument type (#6004)
Update version field, remove Python 2 compatibility marker
This commit is contained in:
@@ -1,2 +1 @@
|
||||
version = "0.1"
|
||||
python2 = true
|
||||
version = "5.0"
|
||||
|
||||
@@ -15,5 +15,5 @@ def slugify(
|
||||
stopwords: Iterable[str] = ...,
|
||||
regex_pattern: str | None = ...,
|
||||
lowercase: bool = ...,
|
||||
replacements: Iterable[str] = ...,
|
||||
replacements: Iterable[Iterable[str]] = ...,
|
||||
) -> str: ...
|
||||
|
||||
Reference in New Issue
Block a user