code formatting: black --skip-string-normalization --line-length 100

This commit is contained in:
Hans-Christoph Steiner 2021-03-18 15:26:42 +01:00
parent 7f458f8f8c
commit 08cde5c2e6
5 changed files with 21 additions and 20 deletions

View file

@ -33,6 +33,7 @@ import threading
class Tail(object):
''' Represents a tail command. '''
def __init__(self, tailed_file):
''' Initiate a Tail instance.
Check for file validity, assigns callback function to standard out.
@ -95,7 +96,6 @@ class Tail(object):
class TailError(Exception):
def __init__(self, msg):
self.message = msg