In pubsub-usage.rst we have:
client=pubsub.Client()
topic=client.topic('topic-name')
sub=pubsub.Subscription('sub-name', topic)I think we should consider changing this to
client=pubsub.Client()
topic=client.topic('topic-name')
sub=topic.subscription('sub-name')
In pubsub-usage.rst we have:
I think we should consider changing this to