diff options
| author | Michaël Ball <michael.ball@gmail.com> | 2019-06-30 11:12:05 +0100 | 
|---|---|---|
| committer | Michaël Ball <michael.ball@gmail.com> | 2019-06-30 11:12:05 +0100 | 
| commit | a87517a0b385f1a68dd80e7dabf7843955c95ab9 (patch) | |
| tree | 696f1e2a45ab7c0db57ce562517790cb73247b53 /watcher.py | |
| parent | 1acbc1e85d6a0af47c236c48b8c5a1b504871d96 (diff) | |
Style fixesfeature/pluggable-viewsdevelop
Diffstat (limited to 'watcher.py')
| -rw-r--r-- | watcher.py | 12 | 
1 files changed, 5 insertions, 7 deletions
| @@ -13,7 +13,6 @@ import pyinotify  from db.db_manager import DbManager  from library import MediaLibrary -  _LOGGER = logging.getLogger(__name__) @@ -111,14 +110,13 @@ class LibraryWatcher(object):              pyinotify.IN_MODIFY          if not hasattr(self, "notifier"): -            setattr(self, -                    "notifier", -                    pyinotify.Notifier(self.wm, EventHandler(library), -                                       timeout=10)) +            setattr( +                self, "notifier", +                pyinotify.Notifier(self.wm, EventHandler(library), timeout=10))          if not hasattr(self, "wdd"): -            setattr(self, "wdd", self.wm.add_watch(path, mask, rec=True, -                                                   auto_add=True)) +            setattr(self, "wdd", +                    self.wm.add_watch(path, mask, rec=True, auto_add=True))          self.notifier.coalesce_events() | 
