Skip to content

Commit 97cbe1c

Browse files
authored
Remove unnecessary import statements (#638)
1 parent fd79ce6 commit 97cbe1c

File tree

9 files changed

+0
-11
lines changed

9 files changed

+0
-11
lines changed

comtypes/client/_events.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from __future__ import print_function
21
import ctypes
32
import traceback
43
import comtypes

comtypes/client/_generate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from __future__ import print_function
21
import ctypes
32
import importlib
43
import inspect

comtypes/shelllink.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from __future__ import print_function
21
from ctypes import c_char_p, c_int, c_short, c_wchar_p
32
from ctypes import POINTER
43
from ctypes import byref, create_string_buffer, create_unicode_buffer

comtypes/test/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# comtypes.test package.
22

3-
from __future__ import print_function
43
import ctypes
54
import getopt
65
import os

comtypes/test/find_memleak.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from __future__ import print_function
21
import unittest, gc
32
from ctypes import *
43
from ctypes.wintypes import *

comtypes/test/test_agilent.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# is installed. It is not requires to have a physical instrument
33
# connected, the driver is used in simulation mode.
44

5-
from __future__ import print_function
65
import unittest
76
from comtypes.test import ResourceDenied
87
from comtypes.client import CreateObject

comtypes/test/test_createwrappers.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import glob
42
import os
53
import unittest

comtypes/test/test_excel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# -*- coding: latin-1 -*-
2-
from __future__ import print_function
32

43
import datetime
54
import sys

comtypes/test/test_variant.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
import datetime
42
import decimal
53
import sys

0 commit comments

Comments
 (0)