Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-12-03 00:26:20 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-12-03 00:26:20 +0300
commit69770417f99732ba29b3aa933e81ba95d8dd0e0b (patch)
treee742b6e0d005dfff91c449386633bde2ba07a810 /gajim/common/dbus
parent2499d4dc20bf30b1bc701b8962c4d8e6d0cb2870 (diff)
Pylint: Don't check for optional module
Diffstat (limited to 'gajim/common/dbus')
-rw-r--r--gajim/common/dbus/location.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gajim/common/dbus/location.py b/gajim/common/dbus/location.py
index 0a9b59820..662f2b0b8 100644
--- a/gajim/common/dbus/location.py
+++ b/gajim/common/dbus/location.py
@@ -23,7 +23,7 @@ from nbxmpp.structs import LocationData
from gajim.common import app
if app.is_installed('GEOCLUE'):
- from gi.repository import Geoclue # pylint: disable=ungrouped-imports
+ from gi.repository import Geoclue # pylint: disable=ungrouped-imports,no-name-in-module
log = logging.getLogger('gajim.c.dbus.location')