Standardize imports: standard newline package newline tfw

This commit is contained in:
Kristóf Tóth
2018-03-25 15:43:59 +02:00
parent a3fa75b676
commit 1e2ea0ed17
9 changed files with 12 additions and 7 deletions

View File

@ -1,6 +1,7 @@
from functools import wraps
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler as FileSystemWatchdogEventHandler
from functools import wraps
from tfw.networking.event_handlers.server_connector import ServerUplinkConnector
from tfw.components.decorators import RateLimiter

View File

@ -1,6 +1,7 @@
from os.path import dirname
from watchdog.observers import Observer
from watchdog.events import PatternMatchingEventHandler
from os.path import dirname
from tfw.components.mixins.callback_mixin import CallbackMixin

View File

@ -1,6 +1,6 @@
import xmlrpc.client
from contextlib import suppress
from xmlrpc.client import Fault as SupervisorFault
from contextlib import suppress
from os import remove
from tfw.config import tfwenv

View File

@ -5,7 +5,6 @@ from collections import Iterable
from tfw.event_handler_base import TriggerlessEventHandler
from tfw.components.directory_monitor import DirectoryMonitor
from tfw.config.logs import logging
log = logging.getLogger(__name__)