Skip to content

Commit 9a15496

Browse files
author
vlad-outscraper
committed
docker fix
1 parent 141e61a commit 9a15496

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

google_maps_reviews/client.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
from .utils import as_list
44

55

6-
VERSION = '0.0.2'
7-
8-
96
class ReviewsClient(object):
107
"""ReviewsClient - Python SDK.
118
```python
@@ -22,7 +19,7 @@ class ReviewsClient(object):
2219
def __init__(self, api_key: str) -> None:
2320
self._api_headers = {
2421
'X-API-KEY': api_key,
25-
'client': f'Python G-Maps Reviews SDK {VERSION}'
22+
'client': 'Python G-Maps Reviews SDK'
2623
}
2724

2825
def get_reviews(self, query: list, reviewsLimit: int = 10, limit: int = 1, sort: str = 'most_relevant',

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
from setuptools import setup
22

33

4-
from google_maps_reviews import VERSION
5-
6-
74
def readme():
85
with open('README.rst') as f:
96
return f.read()
107

118

129
setup(
1310
name='google-maps-reviews',
14-
version=VERSION,
11+
version='0.0.3',
1512
description='Google Maps Reviews API SDK',
1613
long_description=readme(),
1714
classifiers = ['Programming Language :: Python',

0 commit comments

Comments
 (0)