From 6b5da84014add1af4664130cbf473834d301d8d8 Mon Sep 17 00:00:00 2001 From: jayonlau Date: Thu, 26 Aug 2021 03:06:09 +0800 Subject: [PATCH] Clean up extra spaces last one (#7904) Although these errors are not important, they affect the code specification. --- test-infra/image-builder/OWNERS | 4 ++-- tests/scripts/md-table/main.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test-infra/image-builder/OWNERS b/test-infra/image-builder/OWNERS index 8e07ecc19..0d2e92d89 100644 --- a/test-infra/image-builder/OWNERS +++ b/test-infra/image-builder/OWNERS @@ -2,7 +2,7 @@ approvers: - woopstar - - ant31 + - ant31 reviewers: - woopstar - - ant31 + - ant31 diff --git a/tests/scripts/md-table/main.py b/tests/scripts/md-table/main.py index 01fee4db0..0a9eed8c4 100755 --- a/tests/scripts/md-table/main.py +++ b/tests/scripts/md-table/main.py @@ -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()