Fix python-slugify replacements argument type (#6004)

Update version field, remove Python 2 compatibility marker
This commit is contained in:
Gergely Kalmár
2021-09-05 20:44:23 +02:00
committed by GitHub
parent d599a535b2
commit 96b5254056
2 changed files with 2 additions and 3 deletions

View File

@@ -1,2 +1 @@
version = "0.1"
python2 = true
version = "5.0"

View File

@@ -15,5 +15,5 @@ def slugify(
stopwords: Iterable[str] = ...,
regex_pattern: str | None = ...,
lowercase: bool = ...,
replacements: Iterable[str] = ...,
replacements: Iterable[Iterable[str]] = ...,
) -> str: ...