Change WatchedFileHandler to inherit from FileHandler (#2947)

This commit is contained in:
Callum Ryan
2019-05-02 12:55:56 -07:00
committed by Sebastian Rittau
parent df953ca385
commit 1726b31013

View File

@@ -26,7 +26,7 @@ DEFAULT_SOAP_LOGGING_PORT: int
SYSLOG_UDP_PORT: int
SYSLOG_TCP_PORT: int
class WatchedFileHandler(Handler):
class WatchedFileHandler(FileHandler):
@overload
def __init__(self, filename: _Path) -> None: ...
@overload