Skip to content

Commit

Permalink
Annotate WHEEL and SDIST constants as str
Browse files Browse the repository at this point in the history
  • Loading branch information
cjolowicz committed Feb 3, 2021
1 parent 6f631b2 commit 31163af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nox_poetry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 31163af

Please sign in to comment.