Skip to content

Commit b54fc20

Browse files
committed
remove unnecessary creation of instances
1 parent 4941926 commit b54fc20

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
@@ -209,13 +209,6 @@ def __init__(self, *args, **kwargs):
209209
ops[op] = '%s COLLATE %s' % (sql, collation)
210210
self.operators.update(ops)
211211

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

0 commit comments

Comments
 (0)