py3: Remove all __future__ import division.

This commit is contained in:
rht
2017-10-15 02:33:44 +02:00
committed by Tim Abbott
parent b2ad8fd747
commit 2f3ae84e5a
6 changed files with 0 additions and 10 deletions

View File

@@ -1,5 +1,3 @@
from __future__ import division
from zerver.models import Realm, UserProfile, Stream, Message
from analytics.models import InstallationCount, RealmCount, UserCount, StreamCount
from analytics.lib.counts import CountStat

View File

@@ -1,5 +1,3 @@
from __future__ import division
from typing import Any, Dict
from zerver.lib.statistics import seconds_usage_between

View File

@@ -1,5 +1,3 @@
from __future__ import division
from typing import Any, List
from argparse import ArgumentParser

View File

@@ -9,7 +9,6 @@ It must be run on a machine that is using the live database for the
Django ORM.
"""
from __future__ import print_function
from __future__ import division
import sys
import optparse

View File

@@ -7,7 +7,6 @@ It must be run on a machine that is using the live database for the
Django ORM.
"""
from __future__ import print_function
from __future__ import division
import datetime
import os

View File

@@ -1,5 +1,3 @@
from __future__ import division
from django.core.management.base import BaseCommand, CommandParser
from django.utils.timezone import now as timezone_now
from django.db.models import F, Max