Skip to content

Commit cf70714

Browse files
authored
don't need to import from __future__ anymore (#202)
1 parent ce77ae0 commit cf70714

File tree

13 files changed

+0
-14
lines changed

13 files changed

+0
-14
lines changed

awscrt/auth.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
66
# SPDX-License-Identifier: Apache-2.0.
77

8-
from __future__ import absolute_import
98
import _awscrt
109
from awscrt import NativeResource
1110
import awscrt.exceptions

awscrt/http.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
88
# SPDX-License-Identifier: Apache-2.0.
99

10-
from __future__ import absolute_import
1110
import _awscrt
1211
from concurrent.futures import Future
1312
from awscrt import NativeResource

awscrt/io.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
99
# SPDX-License-Identifier: Apache-2.0.
1010

11-
from __future__ import absolute_import
1211
import _awscrt
1312
from awscrt import NativeResource
1413
from enum import IntEnum

elasticurl.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0.
3-
from __future__ import print_function
43
import argparse
54
import sys
65
import os

mqtt_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0.
33

4-
from __future__ import print_function
5-
64
import argparse
75
from awscrt import io, mqtt
86
from awscrt.io import LogLevel

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0.
33

4-
from __future__ import print_function
54
import distutils.ccompiler
65
import glob
76
import os

test/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0.
33

4-
from __future__ import print_function
54
from awscrt import NativeResource
65
import gc
76
import inspect

test/appexit_http.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0.
33

4-
from __future__ import absolute_import, print_function
54
import awscrt.http
65
import awscrt.io
76
import enum

test/test_appexit.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0.
33

4-
from __future__ import absolute_import, print_function
54
import subprocess
65
import sys
76
import unittest

test/test_auth.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0.
33

4-
from __future__ import absolute_import
54
import awscrt.auth
65
import awscrt.io
76
import datetime

0 commit comments

Comments
 (0)