From 04f8753ffa8dc8f6956c964079eefac4e8bc7353 Mon Sep 17 00:00:00 2001 From: "Ian Y. Choi" Date: Sun, 18 Aug 2024 22:19:48 +0900 Subject: [PATCH] [trivial] Remove "import input" on check-all-candidacies "tox -evenv -- check-all-candidacies" command generates "ModuleNotFoundError: No module named 'input'" error. input() should work in Python 3 without import. Change-Id: Id97a589a3d0482316a5b391f60535c28f7605ee5 --- openstack_election/cmds/check_all_candidacies.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openstack_election/cmds/check_all_candidacies.py b/openstack_election/cmds/check_all_candidacies.py index 85b1b1e6..1cb67b5c 100755 --- a/openstack_election/cmds/check_all_candidacies.py +++ b/openstack_election/cmds/check_all_candidacies.py @@ -11,7 +11,6 @@ # under the License. import argparse -import input import os from openstack_election.cmds import ci_check_all_candidate_files as checks