From ea7f06e85153a060711ff4c12ad9b0ee2cf9f4bb Mon Sep 17 00:00:00 2001 From: Joe Mancuso Date: Wed, 3 Jan 2024 21:35:50 -0500 Subject: [PATCH] format --- src/masoniteorm/connections/BaseConnection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/masoniteorm/connections/BaseConnection.py b/src/masoniteorm/connections/BaseConnection.py index c3256c6b..e6c6f8c6 100644 --- a/src/masoniteorm/connections/BaseConnection.py +++ b/src/masoniteorm/connections/BaseConnection.py @@ -39,6 +39,7 @@ def statement(self, query, bindings=()): raise AttributeError( f"Must set the _cursor attribute on the {self.__class__.__name__} class before calling the 'statement' method." ) + self._cursor.execute(query, bindings) end = "{:.2f}".format(timer() - start)