Browse Source
Clean up extra spaces last one (#7904)
Although these errors are not important, they affect the code specification.
pull/7912/head
jayonlau
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
3 deletions
-
test-infra/image-builder/OWNERS
-
tests/scripts/md-table/main.py
|
@ -2,7 +2,7 @@ |
|
|
|
|
|
|
|
|
approvers: |
|
|
approvers: |
|
|
- woopstar |
|
|
- woopstar |
|
|
- ant31 |
|
|
|
|
|
|
|
|
- ant31 |
|
|
reviewers: |
|
|
reviewers: |
|
|
- woopstar |
|
|
- woopstar |
|
|
- ant31 |
|
|
|
|
|
|
|
|
- ant31 |
|
@ -27,7 +27,7 @@ class Data: |
|
|
self.db = Base(':memory:') |
|
|
self.db = Base(':memory:') |
|
|
self.db.create('container_manager', 'network_plugin', 'operating_system') |
|
|
self.db.create('container_manager', 'network_plugin', 'operating_system') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def set(self, container_manager, network_plugin, operating_system): |
|
|
def set(self, container_manager, network_plugin, operating_system): |
|
|
self.db.insert(container_manager=container_manager, network_plugin=network_plugin, operating_system=operating_system) |
|
|
self.db.insert(container_manager=container_manager, network_plugin=network_plugin, operating_system=operating_system) |
|
|
self.db.commit() |
|
|
self.db.commit() |
|
|