From 9f944d9449afe86ce3d4f4fb54ea2ea96ad4ae0a Mon Sep 17 00:00:00 2001 From: rht Date: Thu, 28 Sep 2017 06:50:34 +0200 Subject: [PATCH] zerver/lib: Remove from __future__ import *. --- zerver/lib/bugdown/testing_mocks.py | 1 - zerver/lib/statistics.py | 1 - zerver/lib/utils.py | 1 - 3 files changed, 3 deletions(-) diff --git a/zerver/lib/bugdown/testing_mocks.py b/zerver/lib/bugdown/testing_mocks.py index 8ac7c92ef7..322de58aa1 100644 --- a/zerver/lib/bugdown/testing_mocks.py +++ b/zerver/lib/bugdown/testing_mocks.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- -from __future__ import unicode_literals from typing import Any, Dict, Optional, Text import ujson diff --git a/zerver/lib/statistics.py b/zerver/lib/statistics.py index a8fe65f6bd..cc5a0d42e9 100644 --- a/zerver/lib/statistics.py +++ b/zerver/lib/statistics.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- -from __future__ import division from zerver.models import UserProfile, UserActivity, UserActivityInterval, Message diff --git a/zerver/lib/utils.py b/zerver/lib/utils.py index 3ebcd6cfb8..c5706c55c8 100644 --- a/zerver/lib/utils.py +++ b/zerver/lib/utils.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- -from __future__ import division from typing import Any, Callable, List, Optional, Sequence, TypeVar, Iterable, Set, Tuple, Text from six import binary_type