good housekeeping

This commit is contained in:
Jean-Paul Calderone 2019-02-27 13:05:34 -05:00
parent 3b5e8d7e6b
commit 1ec0e48422

View File

@ -3,6 +3,13 @@
An implementation of an inotify-like interface on top of the ``watchdog`` library.
"""
from __future__ import (
unicode_literals,
print_function,
absolute_import,
division,
)
__all__ = [
"humanReadableMask", "INotify",
"IN_WATCH_MASK", "IN_ACCESS", "IN_MODIFY", "IN_ATTRIB", "IN_CLOSE_NOWRITE",