Skip to content

Commit

Permalink
Fix the Docstring for search
Browse files Browse the repository at this point in the history
  • Loading branch information
Ombucha authored Jun 25, 2022
1 parent 3073fe4 commit 435a0c0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
project = "gocomics.py"
copyright = "2022, Omkaar"
author = "Mr.Brawler"
release = "1.1.2"
release = "1.1.3"

extensions = ["sphinx.ext.autodoc"]
2 changes: 1 addition & 1 deletion gocomics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
__author__ = 'Omkaar'
__license__ = 'MIT'
__copyright__ = 'Copyright 2022 Omkaar'
__version__ = '1.1.2'
__version__ = '1.1.3'


from .comic import *
Expand Down
2 changes: 2 additions & 0 deletions gocomics/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ def search(text: str, *, category: Optional[Literal["comic", "feature"]] = "comi
"""
Searches GoComics.
:param text: The text to search for.
:type text: str
:param category: The category to search in.
:type category: Optional[Literal["comic", "feature"]]
:param page: The page number.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gocomics.py"
version = "1.1.2"
version = "1.1.3"
description = "Fetch comics from GoComics."
authors = ["Mr.Brawler <omkaar.nerurkar@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name = "gocomics.py",
version = "1.1.2",
version = "1.1.3",
description = "Fetch comics from GoComics.",
long_description = README,
long_description_content_type = "text/x-rst",
Expand Down

0 comments on commit 435a0c0

Please sign in to comment.