Skip to content

Commit

Permalink
Disable pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
i96751414 committed Feb 24, 2021
1 parent 7d918b3 commit ac6dbd2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion default.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import dependencies # noqa
import dependencies # noqa, pylint: disable=unused-import
from lib.entries import run

run()
2 changes: 1 addition & 1 deletion lib/routes.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os

from lib.entries import ENTRIES_PATH
from lib.httpserver import ServerHandler, add_get_route
from lib.httpserver import ServerHandler, add_get_route # pylint: disable=unused-import
from lib.kodi import ADDON_PATH
from lib.repository import Repository

Expand Down
2 changes: 1 addition & 1 deletion service.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import dependencies # noqa
import dependencies # noqa, pylint: disable=unused-import
from lib.service import run

run()

0 comments on commit ac6dbd2

Please sign in to comment.