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: I37f496630161991cd568e22dd7f54319c4f4f72d
This commit is contained in:
melissaml
2018-01-26 01:10:34 +08:00
parent 59631135d3
commit 25a3ceef51

View File

@@ -57,7 +57,7 @@ exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools
# [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