zerver/lib: Remove from __future__ import *.

This commit is contained in:
rht 2017-09-28 06:50:34 +02:00 committed by Tim Abbott
parent 31d3b1ecc0
commit 9f944d9449
3 changed files with 0 additions and 3 deletions

View File

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from typing import Any, Dict, Optional, Text from typing import Any, Dict, Optional, Text
import ujson import ujson

View File

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import division
from zerver.models import UserProfile, UserActivity, UserActivityInterval, Message from zerver.models import UserProfile, UserActivity, UserActivityInterval, Message

View File

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import division
from typing import Any, Callable, List, Optional, Sequence, TypeVar, Iterable, Set, Tuple, Text from typing import Any, Callable, List, Optional, Sequence, TypeVar, Iterable, Set, Tuple, Text
from six import binary_type from six import binary_type