Fix flake8 complaints

This commit is contained in:
Odd Stråbø 2025-09-16 05:26:28 +02:00
commit 614c5ec02b
4 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View file

@ -70,6 +70,7 @@ Thumbs.db
!.vscode/extensions.json
!.vscode/settings.json
pyinstrument/
.venv/
# Now managed by templates
addon.xml

View file

@ -10,6 +10,7 @@ from importlib import reload
# Workaround for threads using datetime: _striptime is locked
import _strptime # noqa:F401
import xbmc
import xbmcgui

View file

@ -1,11 +1,12 @@
# -*- coding: utf-8 -*-
from __future__ import division, absolute_import, print_function, unicode_literals
import json
##################################################################################################
from . import settings, LazyLogger
from .utils import translate_path
import json
##################################################################################################

View file

@ -1,7 +1,7 @@
[flake8]
max-line-length = 9999
import-order-style = pep8
exclude = .git,.vscode
exclude = .git,.vscode,.venv
extend-ignore =
I202
E203