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'
Bug report?
ScopusSearch
will not accept thekwd
argumentcount
. This is due to the fact its__init__
function specifies acount
parameter before it calls its parent__init__
method, so if thecount
parameter is added as akwd
, we get the following error:TypeError: __init__() got multiple values for keyword argument 'count'