summaryrefslogtreecommitdiff
path: root/nautilus
diff options
context:
space:
mode:
authorjvoisin2022-10-09 21:12:57 +0200
committerjvoisin2022-10-09 21:14:20 +0200
commit6d93cf9397479c03c8414a42521987249471975e (patch)
tree52c2e88d4bca1bc1181083e6f48d897bac628803 /nautilus
parentb1a16b334f468a8197dd996289fb62d02a1749ad (diff)
Remove deprecated pylint checks
Diffstat (limited to 'nautilus')
-rw-r--r--nautilus/mat2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nautilus/mat2.py b/nautilus/mat2.py
index 11e6986..7e94cac 100644
--- a/nautilus/mat2.py
+++ b/nautilus/mat2.py
@@ -10,7 +10,7 @@ so we're not allowed to call anything Gtk-related outside of the main
10thread, so we'll have to resort to using a `queue` to pass "messages" around. 10thread, so we'll have to resort to using a `queue` to pass "messages" around.
11""" 11"""
12 12
13# pylint: disable=no-name-in-module,unused-argument,no-self-use,import-error 13# pylint: disable=no-name-in-module,unused-argument,import-error
14 14
15import queue 15import queue
16import threading 16import threading