about summary refs log tree commit diff stats
path: root/ranger/core/shared.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/core/shared.py')
-rw-r--r--ranger/core/shared.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ranger/core/shared.py b/ranger/core/shared.py
index 38b0d35a..764c2384 100644
--- a/ranger/core/shared.py
+++ b/ranger/core/shared.py
@@ -3,17 +3,17 @@
 
 """Shared objects contain singletons for shared use."""
 
-from ranger.ext.lazy_property import lazy_property
+from ranger.ext.lazy_property import lazy_property  # NOQA pylint: disable=unused-import
 
 
-class FileManagerAware(object):
+class FileManagerAware(object):  # pylint: disable=too-few-public-methods
     """Subclass this to gain access to the global "FM" object."""
     @staticmethod
     def _setup(fm):
         FileManagerAware.fm = fm
 
 
-class SettingsAware(object):
+class SettingsAware(object):  # pylint: disable=too-few-public-methods
     """Subclass this to gain access to the global "SettingObject" object."""
     @staticmethod
     def _setup(settings):