Clean up extra spaces last one (#7904)

Although these errors are not important, they affect the code specification.
This commit is contained in:
jayonlau 2021-08-26 03:06:09 +08:00 committed by GitHub
parent 1c3d33e146
commit 6b5da84014
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
approvers:
- woopstar
- ant31
- ant31
reviewers:
- woopstar
- ant31
- ant31

View file

@ -27,7 +27,7 @@ class Data:
self.db = Base(':memory:')
self.db.create('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.commit()