Skip to content

Commit ecc68d2

Browse files
michiyawgordon17
authored andcommitted
remove unnecessary creation of instances
1 parent 15691f1 commit ecc68d2

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

sql_server/pyodbc/base.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,6 @@ def __init__(self, *args, **kwargs):
207207
ops[op] = '%s COLLATE %s' % (sql, collation)
208208
self.operators.update(ops)
209209

210-
self.features = self.features_class(self)
211-
self.ops = self.ops_class(self)
212-
self.client = self.client_class(self)
213-
self.creation = self.creation_class(self)
214-
self.introspection = self.introspection_class(self)
215-
self.validation = self.validation_class(self)
216-
217210
def create_cursor(self, name=None):
218211
return CursorWrapper(self.connection.cursor(), self)
219212

0 commit comments

Comments
 (0)