I installed disqus-python then tried the basic example with my secret key and public key: ``` pip install disqus-python from disqusapi import DisqusAPI disqus = DisqusAPI(secret_key, public_key) ``` However now when I do ``` disqus.get('trends.listThreads') ``` I get the error: ``` TypeError: __call__() takes exactly 1 argument (2 given) ```