Replace Chinese quotes with English quotes

Change-Id: I323c50a0cea3dd1e5cfa8180ab46d9af4c610f94
This commit is contained in:
zhangdebo 2018-09-20 07:29:27 -04:00
parent 7dddbd56d4
commit 0b5aa2e98a
1 changed files with 2 additions and 2 deletions

View File

@ -111,11 +111,11 @@ commands =
bandit -r deckhand -x deckhand/tests -n 5
[flake8]
# [H106] Dont 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.