diff options
author | josibake <josibake@protonmail.com> | 2021-08-24 18:05:43 +0200 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-10-16 09:14:37 +0800 |
commit | a46f71bb703dd8ada77e5eaf2a0b05d741d39bbf (patch) | |
tree | 65db1ba717a255212cb4e29941dbadf1fb74c09d /test/functional/combine_logs.py | |
parent | 22e652662bb1fb9bd7ae6ab01c20665ad1c57895 (diff) |
lint: enable mypy checking for missing imports
Achieve this by adding some ignore, and making data/ importable.
Co-authored-by: João Barbosa <joao.paulo.barbosa@gmail.com>
Diffstat (limited to 'test/functional/combine_logs.py')
-rwxr-xr-x | test/functional/combine_logs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/combine_logs.py b/test/functional/combine_logs.py index 00f2833f55..71dfb4c01a 100755 --- a/test/functional/combine_logs.py +++ b/test/functional/combine_logs.py @@ -188,7 +188,7 @@ def print_logs_plain(log_events, colors): def print_logs_html(log_events): """Renders the iterator of log events into html.""" try: - import jinja2 + import jinja2 #type:ignore except ImportError: print("jinja2 not found. Try `pip install jinja2`") sys.exit(1) |