typing: suppress an import-error warning in `mercurial/utils/resourceutil.py`
Newly caught by pytype 2021-09-09.
Differential Revision: https://phab.mercurial-scm.org/D11468
--- a/mercurial/utils/resourceutil.py Mon Sep 20 10:42:38 2021 -0400
+++ b/mercurial/utils/resourceutil.py Mon Sep 20 10:44:25 2021 -0400
@@ -57,7 +57,7 @@
try:
# importlib.resources exists from Python 3.7; see fallback in except clause
# further down
- from importlib import resources
+ from importlib import resources # pytype: disable=import-error
# Force loading of the resources module
resources.open_binary # pytype: disable=module-attr