mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-07-17 03:20:52 +08:00
Format the coding style across the codebase using "black" and manual tweaks
The main benefit of this commit is that the use of double quotes is now consistent.
This commit is contained in:
@@ -2,9 +2,7 @@ import pkg_resources
|
||||
|
||||
from module_build_service.builder.base import GenericBuilder
|
||||
|
||||
__all__ = [
|
||||
GenericBuilder
|
||||
]
|
||||
__all__ = [GenericBuilder]
|
||||
|
||||
for entrypoint in pkg_resources.iter_entry_points('mbs.builder_backends'):
|
||||
for entrypoint in pkg_resources.iter_entry_points("mbs.builder_backends"):
|
||||
GenericBuilder.register_backend_class(entrypoint.load())
|
||||
|
||||
Reference in New Issue
Block a user