Fix pylint warnings

This commit is contained in:
R. Richard
2019-06-27 14:36:18 +02:00
committed by Kristóf Tóth
parent 810f6d5297
commit 28f09086a2
5 changed files with 6 additions and 8 deletions

View File

@ -9,7 +9,7 @@ from tempfile import TemporaryDirectory
import pytest
from file_manager import FileManager
from .file_manager import FileManager
@dataclass
class ManagerContext:

View File

@ -5,13 +5,11 @@ from pwd import getpwnam
from grp import getgrnam
from pathlib import Path
from os import chown
from os.path import dirname
from re import findall
from re import compile as compileregex
from abc import ABC, abstractmethod
from tfw.components.inotify import InotifyObserver
from tfw.event_handlers import TFWServerUplinkConnector
class HistoryMonitor(ABC, InotifyObserver):