# HG changeset patch # User Franz Glasner # Date 1624453237 -7200 # Node ID 396d8d9aaead7cf6e9a7f3636913183a81ea2658 # Parent d7daec11938392699992091f1ab998bcd6b5aeb1 Mark the use of "unichr()" with "noqa: F821" because of flake8 complaints when running it with Python3 diff -r d7daec119383 -r 396d8d9aaead configmix/compat.py --- a/configmix/compat.py Thu Jun 10 22:02:09 2021 +0200 +++ b/configmix/compat.py Wed Jun 23 15:00:37 2021 +0200 @@ -69,7 +69,7 @@ return s.encode(_FS_ENCODING) def uchr(n): - return unichr(n) + return unichr(n) # noqa: F821 else: