-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get a subscription from a topic #912
Comments
I am 👍 @tseaver WDYT? |
Given that we advertise |
@tseaver I'm trying to incorporate this into #910 and Pylint is not happy about # In topic.py
# pylint: disable=cyclic-import
from gcloud.pubsub.subscription import Subscription
# pylint: enable=cyclic-import
# In subscription.py
# pylint: disable=cyclic-import
from gcloud.pubsub.topic import Topic
# pylint: enable=cyclic-import and it still complains. Thoughts? |
Ended up solving by factoring out the behavior in the |
In pubsub-usage.rst we have:
I think we should consider changing this to
The text was updated successfully, but these errors were encountered: