pybliometrics-dev / pybliometrics

Python-based API-Wrapper to access Scopus
https://pybliometrics.readthedocs.io/en/stable/
Other
420 stars 129 forks source link

ScopusSearch will not accept a count keyword argument. #172

Closed ghost closed 3 years ago

ghost commented 4 years ago

Bug report?

ScopusSearch will not accept the kwd argument count. This is due to the fact its __init__ function specifies a count parameter before it calls its parent __init__ method, so if the count parameter is added as a kwd, we get the following error:

TypeError: __init__() got multiple values for keyword argument 'count'

Michael-E-Rose commented 3 years ago

Thanks for doing that! Issues are very much appreciated, and PRs even more.

ghost commented 3 years ago

My pleasure!