From f62f402127254d3ff923da52d42fb878286cf09c Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 19 Nov 2022 14:47:34 +0000 Subject: [PATCH] python-slugify: use explicit re-exports (#9225) Fixes https://github.com/python/typeshed/pull/9224#discussion_r1027053364 --- stubs/python-slugify/slugify/__init__.pyi | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/stubs/python-slugify/slugify/__init__.pyi b/stubs/python-slugify/slugify/__init__.pyi index 21d40adac..2d77c5af9 100644 --- a/stubs/python-slugify/slugify/__init__.pyi +++ b/stubs/python-slugify/slugify/__init__.pyi @@ -1,12 +1,12 @@ from .__version__ import ( - __author__, - __author_email__, - __copyright__, - __description__, - __license__, - __title__, - __url__, - __version__, + __author__ as __author__, + __author_email__ as __author_email__, + __copyright__ as __copyright__, + __description__ as __description__, + __license__ as __license__, + __title__ as __title__, + __url__ as __url__, + __version__ as __version__, ) from .slugify import * from .special import *