Skip to content

Commit

Permalink
docs(pypi): update docstings in pypi.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danth authored and relekang committed Mar 22, 2020
1 parent 3799d8b commit 6502d44
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions semantic_release/pypi.py
@@ -1,4 +1,4 @@
"""PyPI
"""Helper for using Twine to upload to PyPI.
"""
from invoke import run

Expand All @@ -15,11 +15,11 @@ def upload_to_pypi(
Wheels must already be created and stored at the given path.
:param path: Path to dist folder
:param username: PyPI account username string
:param password: PyPI account password string
:param skip_existing: Continue uploading files if one already exists. (Only valid when
uploading to PyPI. Other implementations may not support this.)
:param path: Path to dist folder containing the files to upload.
:param username: PyPI account username.
:param password: PyPI account password.
:param skip_existing: Continue uploading files if one already exists.
(Only valid when uploading to PyPI. Other implementations may not support this.)
"""
if username is None or password is None or username == "" or password == "":
raise ImproperConfigurationError('Missing credentials for uploading')
Expand Down

0 comments on commit 6502d44

Please sign in to comment.