Ensure tox.ini is ASCII

The left/right single quotation marks cause an ascii decode error in
some python3.6 environments.

Change-Id: I1675929d410ab46278fcac001eae4a1aea321126
This commit is contained in:
Steve Baker 2022-02-18 12:51:28 +13:00
parent 2fe17330d6
commit 72677fcaec
1 changed files with 1 additions and 1 deletions

View File

@ -89,6 +89,6 @@ application-import-names = metalsmith
# [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