From 1ec0e484224b1473e61e069c0b68929edbcd5124 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 27 Feb 2019 13:05:34 -0500 Subject: [PATCH] good housekeeping --- src/allmydata/watchdog/inotify.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/allmydata/watchdog/inotify.py b/src/allmydata/watchdog/inotify.py index da2bf18c5..11752b69a 100644 --- a/src/allmydata/watchdog/inotify.py +++ b/src/allmydata/watchdog/inotify.py @@ -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",