From c51b34e41e4a9652385e55854f867e3e6875e6a4 Mon Sep 17 00:00:00 2001 From: melissaml Date: Fri, 26 Jan 2018 00:55:18 +0800 Subject: [PATCH] Replace curly quotes with straight quotes Curly quotes usually input from Chinese input method. When read from english context, it makes some confusion. Change-Id: Ife984be980a4235d9b14152143e2b3540e414751 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e4b3128b2..935d3e8c5 100644 --- a/tox.ini +++ b/tox.ini @@ -76,7 +76,7 @@ application-import-names = ironic_python_agent # [H203] Use assertIs(Not)None to check for None. # [H204] Use assert(Not)Equal to check for equality. # [H205] Use assert(Greater|Less)(Equal) for comparison. -# [H210] Require ‘autospec’, ‘spec’, or ‘spec_set’ in mock.patch/mock.patch.object calls +# [H210] Require 'autospec', 'spec', or 'spec_set' in mock.patch/mock.patch.object calls # [H904] Delay string interpolations at logging calls. enable-extensions=H106,H203,H204,H205,H210,H904