From 31163af7b22ad4a0963c2da697296a23e7a70660 Mon Sep 17 00:00:00 2001 From: Claudio Jolowicz Date: Wed, 3 Feb 2021 10:21:25 +0100 Subject: [PATCH] Annotate WHEEL and SDIST constants as `str` --- src/nox_poetry/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nox_poetry/__init__.py b/src/nox_poetry/__init__.py index a529a2d8..1f1e2a1f 100644 --- a/src/nox_poetry/__init__.py +++ b/src/nox_poetry/__init__.py @@ -24,10 +24,10 @@ #: A wheel archive. -WHEEL = DistributionFormat.WHEEL +WHEEL: str = DistributionFormat.WHEEL #: A source archive. -SDIST = DistributionFormat.SDIST +SDIST: str = DistributionFormat.SDIST __all__ = [ "build_package",