From 0b5aa2e98a1ab5ab8a58c9dec3c1f88ef00d17a9 Mon Sep 17 00:00:00 2001 From: zhangdebo Date: Thu, 20 Sep 2018 07:29:27 -0400 Subject: [PATCH] Replace Chinese quotes with English quotes Change-Id: I323c50a0cea3dd1e5cfa8180ab46d9af4c610f94 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 133e2e6d..5bb6fe1f 100644 --- a/tox.ini +++ b/tox.ini @@ -111,11 +111,11 @@ commands = bandit -r deckhand -x deckhand/tests -n 5 [flake8] -# [H106] Don’t put vim configuration in source files. +# [H106] Don't put vim configuration in source files. # [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 # [E731] Do not assign a lambda expression, use a def. This reduces readability in some cases.