Skip to content

Commit acfc38c

Browse files
author
Andrei Neagu
committed
pylint dynamic-sidecar
1 parent fcb9199 commit acfc38c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

api/tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# pylint: disable=unused-argument
21
# pylint: disable=redefined-outer-name
2+
# pylint: disable=too-many-positional-arguments
3+
# pylint: disable=unused-argument
34
# pylint: disable=unused-variable
45

56
import logging

services/dynamic-sidecar/src/simcore_service_dynamic_sidecar/modules/attribute_monitor/_watchdog_extensions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ def __init__(self, path, recursive=False): # pylint:disable=super-init-not-call
2020
# overwrite the `InotifyBuffer.__init__` method
2121
BaseThread.__init__(self) # pylint:disable=non-parent-init-called
2222
self._queue = DelayedQueue(self.delay)
23-
self._inotify = Inotify(path, recursive, InotifyConstants.IN_ATTRIB)
23+
self._inotify = Inotify( # pylint:disable=too-many-function-args
24+
path, recursive, InotifyConstants.IN_ATTRIB
25+
)
2426
self.start()
2527

2628

services/dynamic-sidecar/src/simcore_service_dynamic_sidecar/modules/outputs/_watchdog_extensions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ def __init__(self, path, recursive=False): # pylint:disable=super-init-not-call
3636
# overwrite the `InotifyBuffer.__init__` method
3737
BaseThread.__init__(self) # pylint:disable=non-parent-init-called
3838
self._queue = DelayedQueue(self.delay)
39-
self._inotify = Inotify(path, recursive, _EVENTS_TO_WATCH)
39+
self._inotify = Inotify( # pylint:disable=too-many-function-args
40+
path, recursive, _EVENTS_TO_WATCH
41+
)
4042
self.start()
4143

4244

0 commit comments

Comments
 (0)