Use double quotes to match the coding standard

This commit is contained in:
mprahl
2019-12-09 08:45:47 -05:00
parent e7a3e8a19e
commit 884d7fb79c

View File

@@ -53,7 +53,7 @@ celery_app = Celery("module-build-service")
# celery_broker_url -> broker_url
celery_configs = {
name[7:]: getattr(conf, name)
for name in dir(conf) if name.startswith('celery_')
for name in dir(conf) if name.startswith("celery_")
}
celery_app.conf.update(**celery_configs)