mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-09-18 12:34:39 +00:00
Fix flake8 complaints
This commit is contained in:
parent
36652fc5cd
commit
614c5ec02b
4 changed files with 5 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -70,6 +70,7 @@ Thumbs.db
|
|||
!.vscode/extensions.json
|
||||
!.vscode/settings.json
|
||||
pyinstrument/
|
||||
.venv/
|
||||
|
||||
# Now managed by templates
|
||||
addon.xml
|
||||
|
|
|
@ -10,6 +10,7 @@ from importlib import reload
|
|||
|
||||
# Workaround for threads using datetime: _striptime is locked
|
||||
import _strptime # noqa:F401
|
||||
|
||||
import xbmc
|
||||
import xbmcgui
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
##################################################################################################
|
||||
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,7 +1,7 @@
|
|||
[flake8]
|
||||
max-line-length = 9999
|
||||
import-order-style = pep8
|
||||
exclude = .git,.vscode
|
||||
exclude = .git,.vscode,.venv
|
||||
extend-ignore =
|
||||
I202
|
||||
E203
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue