in glam/api/management/commands/import_revisions.py [0:0]
def handle(self, *args, **options):
self.bq_client = bigquery.Client()
channels = (
[options["channel"]]
if options["channel"] != "all"
else ["nightly", "beta", "release"]
)
for channel in channels:
self.import_revisions(channel)