Remove unused imports

This commit is contained in:
Bastian Germann 2018-10-27 13:05:41 +02:00
parent 6aa998edd0
commit 191273fbe8
3 changed files with 1 additions and 4 deletions

View File

@ -23,7 +23,6 @@
The :mod:`languages` module provides a list of language names with utility functions. The :mod:`languages` module provides a list of language names with utility functions.
""" """
import itertools import itertools
import locale
import logging import logging
import re import re
from collections import namedtuple from collections import namedtuple

View File

@ -22,10 +22,8 @@
""" """
Package to test the openlp.core.lib.languages package. Package to test the openlp.core.lib.languages package.
""" """
from unittest import skipIf
from unittest.mock import MagicMock, patch from unittest.mock import MagicMock, patch
from openlp.core.common import is_macosx
from openlp.core.common.i18n import LANGUAGES, Language, UiStrings, get_language, get_locale_key, get_natural_key, \ from openlp.core.common.i18n import LANGUAGES, Language, UiStrings, get_language, get_locale_key, get_natural_key, \
translate, LanguageManager translate, LanguageManager
from openlp.core.common.settings import Settings from openlp.core.common.settings import Settings

View File

@ -23,7 +23,7 @@
This module contains tests for the lib submodule of the Songs plugin. This module contains tests for the lib submodule of the Songs plugin.
""" """
from unittest import TestCase from unittest import TestCase
from unittest.mock import MagicMock, patch, call from unittest.mock import MagicMock, patch
from PyQt5 import QtCore from PyQt5 import QtCore