Skip to content

Commit 775fa84

Browse files
committed
chore: Update common.py and setup.py versions
1 parent 0b9afef commit 775fa84

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

PyDocSmith/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def format_docstring_to_pep257(docstring: Docstring, width: int = 72) -> Docstri
243243
if meta.description:
244244
# Ensure meta descriptions are wrapped according to PEP 8
245245
split_description = meta.description.split("\n")
246-
for itm, idx in enumerate(split_description):
246+
for idx, itm in enumerate(split_description):
247247
split_description[idx] = textwrap.fill(itm.strip(), width)
248248

249249
meta.description = "\n".join(split_description)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="PyDocSmith",
5-
version="0.1.4",
5+
version="0.1.5",
66
description="It parses and composes docstrings in Google, Numpydoc, ReST and Epydoc.",
77
long_description=open("README.md").read(),
88
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)