summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2019-09-03 08:39:12 +0200
committerJulian Berman <Julian@GrayVines.com>2019-09-03 08:39:12 +0200
commitf082f83c395a657b58c542c60cadc9ba394e2b8a (patch)
treee8e0ada7b5787df04415e815659a3f4c287117a8 /setup.cfg
parent80e96a3d02c930a0d74fa4eb65e2276c37f170e4 (diff)
downloadjsonschema-f082f83c395a657b58c542c60cadc9ba394e2b8a.tar.gz
Don't let flake8 complain about unicode on Py3.
This isn't really the right way to do this, but the code it complains about won't run on Py3, and some random future code that uses unicode should get unit tested, so we don't rely on flake8 for actually testing stuff runs correctly...
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 3c86176..70e1712 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -51,6 +51,7 @@ jsonschema = schemas/*.json
universal = 1
[flake8]
+builtins = unicode
exclude =
jsonschema/__init__.py
jsonschema/_reflect.py