Skip to content
Snippets Groups Projects
Commit e2259611 authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

binman: Correct coverage gap in control


Add a pragma to deal with the code-coverage gap which drops binman down to
90% coverage.

Fixes: de65b122 (tools: Fall back to importlib_resources on Python 3.6)

Signed-off-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
parent 2c522af7
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ from collections import OrderedDict
import glob
try:
import importlib.resources
except ImportError:
except ImportError: # pragma: no cover
# for Python 3.6
import importlib_resources
import os
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment