diff configmix/compat.py @ 348:396d8d9aaead

Mark the use of "unichr()" with "noqa: F821" because of flake8 complaints when running it with Python3
author Franz Glasner <fzglas.hg@dom66.de>
date Wed, 23 Jun 2021 15:00:37 +0200
parents 98490375d90c
children ce2a8f5a2fb2
line wrap: on
line diff
--- 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: