test_events: Add missing print_function py3 import.

This commit is contained in:
Tim Abbott 2017-02-21 14:26:31 -08:00
parent 192805903d
commit 353f969992
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@
# See http://zulip.readthedocs.io/en/latest/events-system.html for # See http://zulip.readthedocs.io/en/latest/events-system.html for
# high-level documentation on how this system works. # high-level documentation on how this system works.
from __future__ import absolute_import from __future__ import absolute_import
from __future__ import print_function
from typing import Any, Callable, Optional from typing import Any, Callable, Optional
from django.conf import settings from django.conf import settings