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: I126b1f475614b7368ce76426ab1d7f61c8fbf4af
This commit is contained in:
melissaml 2018-01-26 00:40:25 +08:00
parent 8f4e89facd
commit 91e43cdb6e
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ application-import-names = ironic_lib
# [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