Skip to content

Commit

Permalink
Fixed bug with bulkSearch
Browse files Browse the repository at this point in the history
  • Loading branch information
sumithemmadi committed Aug 17, 2023
1 parent 242769b commit d8c415c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "truecallerpy"
version = "1.0.2"
version = "1.0.3"
description = "TruecallerPy is a Python package that provides functionalities to interact with the Truecaller API. It allows you to perform login, OTP verification, and phone number search using Truecaller."
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion src/truecallerpy/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async def bulk_search(phoneNumbers, countryCode, installationId):
"Authorization": f"Bearer {installationId}"
}
params = {
"q": ",".join(phoneNumbers),
"q": str(phoneNumbers),
"countryCode": countryCode,
"type": 14,
"placement": "SEARCHRESULTS,HISTORY,DETAILS",
Expand Down

0 comments on commit d8c415c

Please sign in to comment.