Skip to content

Commit

Permalink
README fix + type hint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronlyy committed Sep 20, 2022
1 parent 137766d commit 0bbcf3f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

## Installation

<b>!!! ventus requires Python 3.10 or above to work !!!</b>

Install ventus with pip

```pip install ventus```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# --- setting up ---
setup(
name="ventus",
version='0.2.0',
version='0.2.1',
author="aaronlyy (Aaron Levi)",
author_email="<aaronlevican@gmail.com>",
url="https://github.com/aaronlyy/ventus",
Expand Down
2 changes: 1 addition & 1 deletion ventus/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .query import Query
from .sites import Site

def search(query: Query | str) -> list:
def search(query: Query) -> list:
"""Wrapper around searcher.search"""
s = Searcher()
return s.search(query)
Expand Down

0 comments on commit 0bbcf3f

Please sign in to comment.