diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/plugin_ipc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/plugin_ipc.py b/examples/plugin_ipc.py index da6a19b0..0e7de3bb 100644 --- a/examples/plugin_ipc.py +++ b/examples/plugin_ipc.py @@ -32,6 +32,7 @@ def hook_init(fm): while True: # The IPC encoding depends on the system locale so we can't # guess here. + # pylint: disable=unspecified-encoding with open(filepath, 'r') as fifo: line = fifo.read() fm.execute_console(line.strip()) |