diff options
author | Nathaniel Manista <nathaniel@google.com> | 2016-06-14 19:09:49 +0000 |
---|---|---|
committer | Nathaniel Manista <nathaniel@google.com> | 2016-06-14 19:09:49 +0000 |
commit | 1e44766bfc3975af2f223a2e2442ba5794f86bc9 (patch) | |
tree | 7df76c63065941361fabad14fdbb46fd63630be1 | |
parent | e697b7dbc6ad97e570334fecd2dd1cccaa83aa1a (diff) |
Drop unnecessary future division import
We only ever use floor division (//) in the module.
-rw-r--r-- | src/python/grpcio/tests/unit/_rpc_test.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/python/grpcio/tests/unit/_rpc_test.py b/src/python/grpcio/tests/unit/_rpc_test.py index b33bff490c..886ed87f25 100644 --- a/src/python/grpcio/tests/unit/_rpc_test.py +++ b/src/python/grpcio/tests/unit/_rpc_test.py @@ -29,8 +29,6 @@ """Test of gRPC Python's application-layer API.""" -from __future__ import division - import itertools import threading import unittest |